devcontainer 0.1.4

A devcontainer management CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Project Commands
- Install: `cargo build`
- Build: `cargo build --release`
- Test: `cargo test`
- Lint: `cargo clippy`
- Typecheck: `cargo check`

# Non-Negotiables
- Do not add new dependencies without a strong reason
- Always include verification steps after code changes
- Run tests before marking any task complete

# Common Mistakes
- (add rules here as you discover repeated issues)

# Learnings
- (add patterns from PR reviews here)