Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
17 lines
482 B
YAML
17 lines
482 B
YAML
name: coder
|
|
description: Software-engineering subagent for the Kimi CLI.
|
|
extend: base
|
|
tools:
|
|
- kimi_cli.tools.shell
|
|
- kimi_cli.tools.file
|
|
- kimi_cli.tools.web
|
|
subagents:
|
|
- reviewer
|
|
- planner
|
|
system_prompt: |
|
|
You are the coder subagent. Your job is to implement, refactor,
|
|
and test code in the user's project.
|
|
|
|
Always run the relevant test suite before declaring success.
|
|
Use `make test` if a Makefile exists, otherwise fall back to
|
|
the language's native runner.
|