Initial commit.

This commit is contained in:
Vuong Hoang
2026-04-02 22:01:07 -07:00
commit f8fb8aebdb
22 changed files with 4425 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
# Agent Prompts
System prompts and access configurations for all named agents in the AIPA hierarchy.
---
## Hierarchy
```
[ PRINCIPAL ]
|
├── Miranda (Chief of Staff) miranda_chief_of_staff.md
├── Vera (Auditor) vera_auditor.md
├── Evelyn (Dir. of Personnel) evelyn_director_of_personnel.md
|
Miranda manages:
├── Atlas (Director of Research) atlas_research_lead.md
├── Cole (Director of Operations) cole_operations_lead.md
└── Clio (Director of Analysis) clio_analysis_lead.md
```
---
## Files
| File | Agent | Role | Authored by | Status |
|---|---|---|---|---|
| `miranda_chief_of_staff.md` | Miranda | Chief of Staff / Primary Orchestrator | Principal session | Ready |
| `vera_auditor.md` | Vera | Independent Auditor | Principal session | Ready |
| `evelyn_director_of_personnel.md` | Evelyn | Director of Personnel & Systems | Principal session | Ready |
| `atlas_research_lead.md` | Atlas | Director of Research | Evelyn | Ready |
| `cole_operations_lead.md` | Cole | Director of Operations | Evelyn | Ready |
| `clio_analysis_lead.md` | Clio | Director of Analysis | Evelyn | Ready |
| `iris_interface_director.md` | Iris | Director of Interface & Experience | Evelyn | Ready |
Individual agents (RSCH-###, OPS-###, ANLY-###, QUAL-###) use task-scoped prompts
generated at runtime by their Lead. No static prompt files needed for individual agents.
---
## Provider Configuration
Each prompt file contains a commented-out provider configuration block at the bottom.
To activate a provider for a given agent:
1. Open the agent's prompt file.
2. Locate the matching provider block (Anthropic, OpenAI, Ollama, LM Studio, llama.cpp).
3. Uncomment the block and populate the values.
4. Fill in the **Currently Active Provider** section at the top of the config area.
Temperature guidance:
- Miranda: 0.4 (orchestration requires some flexibility)
- Vera: 0.2 (auditing requires precision and consistency)
- Leads: 0.3–0.5 depending on task type (set per agent file when created)
- Individual agents: set per task brief
---
## Reference
Agent Registry: `../registry/agent_registry.md` — maintained by Evelyn
Full hierarchy specification: `../../docs/hierarchy_spec.md` (pending)
Standing brief template: `../../docs/standing_brief_template.md` (pending)