A solo-company system for turning intent into action.
- Language: Python
- Package Manager: pip
- Tools: git
- Execution System:
python -m agent_scripts.run(deterministic, intent-based)
- Clone the repo.
- Create a virtual environment:
python -m venv .venv - Activate:
. .venv/bin/activate - Install dependencies:
pip install -r requirements.txt - Set up environment: copy
.env.exampleto.env(if exists) and fill in values. - Run:
python -m agent_scripts.run --intent "your intent here" --dry-run
Run latest inbox entry:
python -m agent_scripts.run --onceRun explicit intent with explicit workflow/role:
python -m agent_scripts.run --intent "..." --workflow "Friction → Fix" --role "Architect"Dry run + print plan (no files written):
python -m agent_scripts.run --intent "..." --print-plan- Use
intent/docs/intent_inbox.mdto capture raw intent (append-only). - Run the framework runner to produce artifacts in
intent/docs/artifacts/.
- Purpose: Turn user intent into executable actions via AI.
- Structure: Minimal, documentation-first, memory-compounding.
- Workflows: See
intent/docs/workflows.mdfor execution paths.
- Add a license (e.g., MIT).
- Add
.env.examplefor environment variables. - Add CI/CD pipeline (e.g., GitHub Actions).
- Add
CHANGELOG.mdfor audit findings.