26 lines
891 B
Markdown
26 lines
891 B
Markdown
# 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
|
|
1. **Types**: Iterate with `tb__check-types` until valid. Use `tb__hover` to debug.
|
|
2. **Effect AST**: Run `./node_modules/.bin/effect-patterns-check <filepath>` on any modified Effect files to check for anti-patterns. Address any findings.
|
|
3. **Tests**: Once types pass and AST is clear, iterate with `tb__run-tests` until passing.
|