Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .devcontainer/Dockerfile

This file was deleted.

38 changes: 0 additions & 38 deletions .devcontainer/README.md

This file was deleted.

30 changes: 0 additions & 30 deletions .devcontainer/devcontainer.json

This file was deleted.

100 changes: 0 additions & 100 deletions .devcontainer/post-create.sh

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ patent_page_dom.html
.claude/worktrees/
logs/
.skill-bench/

# Nix build artifacts
result
13 changes: 12 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ agents/
record-progress.sh # Write progress logs (JSONL)
claude-plugin/ # Claude Code Plugin structure
skills/ # Individual skill definitions
scripts/ # Build and setup scripts (build.sh, up.sh, setup.sh)
flake.nix # Nix flake for reproducible Docker image
mise.toml # Task definitions (fmt, clippy, test, pre-commit)
.devcontainer/ # Dev container configuration
```

## Skill-Bench Testing
Expand All @@ -62,3 +63,13 @@ mise.toml # Task definitions (fmt, clippy, test, pre-commit)
| `mise run test` | Run tests with `cargo test` |
| `mise run coverage` | Generate test coverage report |
| `mise run pre-commit` | Run all of the above |

## Development Container

The dev environment uses a Nix flake-based Docker image managed via mise tasks.

- **Build**: `mise run build` — Build the Docker image with Nix
- **Start**: `mise run up` — Start the dev container
- **Setup**: `mise run setup` — Configure git, Rust, Claude CLI, MCP tools, and skills inside the container
- **Attach**: `mise run attach` — Open a shell inside the running container
- **Stop**: `mise run down` — Stop and remove the container
Loading
Loading