mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-07-07 08:12:55 +00:00
Agent neutral instructions
Some checks are pending
CI / Linux (python=3.14 cc=clang sanitize=1) (push) Waiting to run
CI / Linux (python=3.12 cc=gcc sanitize=0) (push) Waiting to run
CI / Linux (python=3.13 cc=gcc sanitize=1) (push) Waiting to run
CI / Linux package (push) Waiting to run
CI / Bundle test (macos-latest) (push) Waiting to run
CI / Bundle test (ubuntu-latest) (push) Waiting to run
CI / macOS Brew (push) Waiting to run
CI / Test ./dev.sh and benchmark (push) Waiting to run
CodeQL / CodeQL-Build (actions, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (c, macos-latest) (push) Waiting to run
CodeQL / CodeQL-Build (c, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (go, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (python, ubuntu-latest) (push) Waiting to run
Depscan / Scan dependencies for vulnerabilities (push) Waiting to run
Some checks are pending
CI / Linux (python=3.14 cc=clang sanitize=1) (push) Waiting to run
CI / Linux (python=3.12 cc=gcc sanitize=0) (push) Waiting to run
CI / Linux (python=3.13 cc=gcc sanitize=1) (push) Waiting to run
CI / Linux package (push) Waiting to run
CI / Bundle test (macos-latest) (push) Waiting to run
CI / Bundle test (ubuntu-latest) (push) Waiting to run
CI / macOS Brew (push) Waiting to run
CI / Test ./dev.sh and benchmark (push) Waiting to run
CodeQL / CodeQL-Build (actions, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (c, macos-latest) (push) Waiting to run
CodeQL / CodeQL-Build (c, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (go, ubuntu-latest) (push) Waiting to run
CodeQL / CodeQL-Build (python, ubuntu-latest) (push) Waiting to run
Depscan / Scan dependencies for vulnerabilities (push) Waiting to run
This commit is contained in:
parent
4e01ab48cc
commit
fab7ce90db
2 changed files with 7 additions and 5 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -8,7 +8,7 @@
|
|||
*_generated_test.go
|
||||
*_generated_test.s
|
||||
*_generated.h
|
||||
/.dmypy.json
|
||||
*.local.md
|
||||
/dependencies
|
||||
/tags
|
||||
/build/
|
||||
|
|
@ -24,11 +24,9 @@ __pycache__/
|
|||
/docs/_build/
|
||||
/docs/generated/
|
||||
/tools/simdstring/simdstring.test
|
||||
/.mypy_cache
|
||||
/.ruff_cache
|
||||
.DS_Store
|
||||
.cache
|
||||
bypy/b
|
||||
bypy/virtual-machines.conf
|
||||
_codeql_detected_source_root
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
# Claude System Instructions & Project Context
|
||||
initialize_command: make debug
|
||||
copy_resource: fonts
|
||||
|
||||
# System Instructions & Project Context
|
||||
|
||||
## Project Architecture & Stack
|
||||
This is a multi-language repository. Adhere strictly to the idiomatic styling, patterns, and type safety of each respective language ecosystem present in the codebase. Do not mix patterns across language boundaries.
|
||||
|
|
@ -41,9 +44,10 @@ To run a Go test named TestMyFunction, use:
|
|||
```
|
||||
|
||||
## Verification Pipeline
|
||||
|
||||
Before declaring a task complete, you must follow this exact verification lifecycle:
|
||||
1. Run the local **Build Command** to guarantee zero compilation or compilation-stage type errors.
|
||||
2. Run the local **Test Command** targeted at the modified module to prevent regressions.
|
||||
2. Run the local **Test Command** to run the full test suite
|
||||
3. If errors occur, analyze the stdout logs completely before writing a fix. Do not guess.
|
||||
4. If the change you have made is user facing, update the docs/changelog.rst
|
||||
file with a brief description of your changes
|
||||
Loading…
Add table
Add a link
Reference in a new issue