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
4 changes: 4 additions & 0 deletions .codex/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Added by setup-project-efficiency.ps1. This MCP server is loaded only for this trusted repository.
[mcp_servers.codegraph]
command = "codegraph"
args = ["serve", "--mcp"]
7 changes: 6 additions & 1 deletion .github/workflows/reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
static-and-smoke:
name: Static contract and smoke validators
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -40,6 +40,11 @@ jobs:
- run: npm run test:external
- run: npm run test:api
- run: npm run test:api-server
- run: npm run test:v2
- run: npm run test:primary
- run: npm run test:primary-capsule
- run: npm run test:eval
- run: npm run test:eval:check
- run: npm run test:graph
- run: npm run test:sandbox
- run: npm run test:remote
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ dist/
.env.*
!.env.example
.repro/
.codegraph/
artifacts/
exports/research-capsules/
outputs/*
!outputs/Research-Studio-Codex-Competition-Pitch.pptx
Expand Down
7 changes: 7 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!-- codex-project-efficiency -->
## Efficient codebase work

- When CodeGraph is available, use its context and impact analysis before broad search or exploration.
- Keep discovery, implementation, and verification as bounded phases. Summarize and start a fresh task when the active context becomes large.
- Use parallel agents only for independent work; keep agent prompts narrow and request concise findings.
- Prefer targeted tests and concise command output. Do not paste broad logs or entire files unless they are necessary to decide the task.
Loading
Loading