https://github.com/fells-code/hilda
A human in the loop framework for agentic software development
https://github.com/fells-code/hilda
Last synced: 13 days ago
JSON representation
A human in the loop framework for agentic software development
- Host: GitHub
- URL: https://github.com/fells-code/hilda
- Owner: fells-code
- License: agpl-3.0
- Created: 2026-04-17T14:36:11.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-19T15:57:06.000Z (about 2 months ago)
- Last Synced: 2026-04-19T17:30:48.099Z (about 2 months ago)
- Language: TypeScript
- Size: 145 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HILDA
HILDA is a human-in-the-loop engineering agent for real repositories. It helps developers understand codebases, generate evidence-backed plans, draft bounded patches, and run safe validation with full trace visibility.
## v0.1.0 Goal
Ship a self-hostable MVP that can:
- authenticate with Seamless Auth
- create workspaces
- connect one repository
- index code and docs
- answer repository-aware questions with evidence
- generate change plans
- draft safe patches behind approval
- run bounded validation
- show traces, tool calls, approvals, and memory
## Monorepo Layout
- `apps/web`: React frontend
- `apps/api`: application API
- `apps/worker`: async jobs for indexing, retrieval prep, and validation
- `packages/*`: shared domain packages
## Local Setup
1. Copy `.env.example` to `.env`
2. Start dependencies with Docker Compose
3. Install dependencies with pnpm
4. Run the workspace in dev mode
## Status
Initial scaffold in progress.