891 B
891 B
Amp Agent Configuration
Primary Context
@.agents/core-rules/global-context.md @CONTEXT.md @.agents/core-rules/topics/naming.md
Topic-Specific Rules (Conditional)
@.agents/core-rules/topics/architecture.md @.agents/core-rules/topics/data-modeling.md @.agents/core-rules/topics/workflows.md @.agents/core-rules/topics/testing.md @.agents/core-rules/topics/design-process.md
Common Commands
- Build:
pnpm build - Test:
pnpm test - Typecheck:
pnpm tsc --noEmit - Lint:
pnpm lint - Format:
pnpm prettier --write .
Development Workflow
- Types: Iterate with
tb__check-typesuntil valid. Usetb__hoverto debug. - Effect AST: Run
./node_modules/.bin/effect-patterns-check <filepath>on any modified Effect files to check for anti-patterns. Address any findings. - Tests: Once types pass and AST is clear, iterate with
tb__run-testsuntil passing.