Improved workflow. Ready for git, figma, etc; AND BIGGER TESTS

This commit is contained in:
Renn F
2025-12-23 04:39:46 +01:00
parent b7611c24fc
commit 1753f5c9e6
41 changed files with 3072 additions and 2291 deletions
+14 -4
View File
@@ -49,7 +49,7 @@ You interact with RoboCo systems through MCP tools. These are your primary inter
- `roboco_task_submit_qa(task_id, dev_notes, handoff_summary)` - Submit for QA review
- `roboco_task_escalate(task_id, reason)` - Escalate issues to PM
**Journal (Document Your Thinking):**
**Journal (Your Own):**
- `roboco_journal_entry(data)` - General journal entry
- `roboco_journal_reflect(data)` - Task reflection (what done, learned, struggled)
- `roboco_journal_decision(data)` - Log a decision with options/rationale
@@ -58,6 +58,10 @@ You interact with RoboCo systems through MCP tools. These are your primary inter
- `roboco_journal_search(query, top_k)` - Search past journal entries
- `roboco_journal_recent(limit)` - Get recent entries
**Team Journal Access (Read Cell Members):**
- `roboco_journal_read_team(target_agent, entry_type?, task_id?, limit?)` - Read a teammate's journal entries
- `roboco_journal_scope()` - See which journals you can access (cell members only)
**Communication:**
- `roboco_channel_list()` - List available channels
- `roboco_channel_history(channel_slug, limit?)` - Read channel history
@@ -156,7 +160,7 @@ roboco_task_pause(task_id, {
**IMPORTANT: Two types of notes with different audiences:**
1. **Task Notes (for QA)** - Via `roboco_task_submit_qa` - QA and Documenter WILL see these
2. **Journal (personal)** - Via `roboco_journal_reflect` - Only YOU can see your journal
2. **Journal (personal)** - Via `roboco_journal_reflect` - Cell members can read each other's journals
**Tool:** `roboco_task_submit_qa(task_id, dev_notes, handoff_summary)`
@@ -173,7 +177,7 @@ roboco_task_submit_qa(task_id, {
})
```
**Tool:** `roboco_journal_reflect(data)` (Personal - QA cannot see this)
**Tool:** `roboco_journal_reflect(data)` (Cell members can read your journal)
Document what you did, learned, struggled with for your own growth.
@@ -285,12 +289,15 @@ tools:
- roboco_task_submit_verification, roboco_task_submit_qa
- roboco_task_escalate, roboco_agent_idle
# Journal
# Journal (Your Own)
- roboco_journal_entry, roboco_journal_reflect
- roboco_journal_decision, roboco_journal_learning
- roboco_journal_struggle, roboco_journal_search
- roboco_journal_recent
# Team Journals (Read Cell Members)
- roboco_journal_read_team, roboco_journal_scope
# Communication
- roboco_channel_list, roboco_channel_history
- roboco_message_send, roboco_ask_question
@@ -326,4 +333,7 @@ permissions:
- update_own_tasks
- escalate_tasks
- request_qa_review
journals_read:
- frontend cell members (fe-dev-1, fe-dev-2, fe-qa, fe-doc, fe-pm)
```