https://github.com/brief-hq/test-dark-factory
This repository demonstrates that the benchmark framework generalizes to codebases of any size. It serves as a Config C test target for the external orchestrator configuration described in the paper "Context-Augmented Code Generation".
https://github.com/brief-hq/test-dark-factory
ai-coding-agents benchmark rag software-engineering
Last synced: 8 days ago
JSON representation
This repository demonstrates that the benchmark framework generalizes to codebases of any size. It serves as a Config C test target for the external orchestrator configuration described in the paper "Context-Augmented Code Generation".
- Host: GitHub
- URL: https://github.com/brief-hq/test-dark-factory
- Owner: brief-hq
- License: mit
- Created: 2026-03-31T01:45:44.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-09T23:43:44.000Z (2 months ago)
- Last Synced: 2026-04-10T01:28:07.025Z (2 months ago)
- Topics: ai-coding-agents, benchmark, rag, software-engineering
- Language: JavaScript
- Homepage: https://briefhq.ai/assets/pdf/Context_Augmented_Code_Generation.pdf
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Test Dark Factory
[](https://opensource.org/licenses/MIT)
[](https://github.com/brief-hq/dcbench)
Minimal Express.js API used as a smoke test target for the [Decision Compliance Benchmark](https://github.com/brief-hq/dcbench).
## Purpose
This repository demonstrates that the benchmark framework generalizes to codebases of any size. It serves as a Config C test target for the external orchestrator configuration described in the paper *"Context-Augmented Code Generation"*.
## Structure
```
├── src/
│ ├── index.js # Express server entry point
│ └── routes/
│ └── tasks.js # Task CRUD endpoints
└── package.json
```
## Running
```bash
npm install
npm start
```
Server runs on `http://localhost:3001`.
## API Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/` | API info |
| GET | `/api/tasks` | List all tasks |
| POST | `/api/tasks` | Create task |
| GET | `/api/tasks/:id` | Get task |
| PUT | `/api/tasks/:id` | Update task |
| DELETE | `/api/tasks/:id` | Delete task |
## Related
- **Main benchmark**: [github.com/brief-hq/dcbench](https://github.com/brief-hq/dcbench)
- **Paper**: [Context-Augmented Code Generation](https://briefhq.ai/assets/pdf/Context_Augmented_Code_Generation.pdf)
- **Brief**: [briefhq.ai](https://briefhq.ai)
## License
MIT