Money Project
Use this skill when working in the @teakit/money repository.
Core Rules
- Start with
AGENTS.md,README.md,docs/knowledge/index.md, anddocs/memory/index.md. - Keep
README.mdshort and route deeper material to focused docs. - Put background and rationale in
docs/knowledge/. - Distill stable decisions into
docs/memory/. - Put version direction in
docs/proposals/and executable SDD contracts indocs/specs/. - Keep
skills/llms.mdandSKILL.mdthin; put detailed API or concept docs in focused reference files when needed. - Document only real public APIs and supported workflows.
- Update tests and docs when behavior, commands, config, runtime targets, or agent-facing usage changes.
- Keep proposed money APIs in proposals or specs until implementation and tests exist.
Workflow
- Identify whether the task changes source code, public API, docs, commands, config, or project memory.
- Read the smallest relevant source, test, doc, or skill file.
- Make scoped changes that follow the existing project style.
- Run relevant verification:
bun run check,bun run typecheck,bun run test,bun run build. - For documentation site changes, also run
bun run docs:build. - Summarize what changed and any verification that could not run.