mc-project-status
SolidSummarize the current state of a Clayrune project — open backlog items, recent agent runs, active hiveminds, scheduled jobs, registered processes. TRIGGER when the user asks "what's the status of X", "give me a project overview", "what's open", "what's been happening here", "where are we", or any request for a project-state recap.
AI & Automation 9 stars
1 forks Updated today MIT
Install
Quality Score: 79/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Clayrune — Project Status Summary
When the user asks for a project overview, query Clayrune's APIs and present a structured snapshot.
## Steps
### 1. Identify the project
If you're already running inside a project session, you know your `project_id`. Otherwise, ask the user which project, or list all:
```bash
curl -s http://localhost:5199/api/projects | python -m json.tool
```
### 2. Pull each surface
Run these in parallel where possible:
```bash
PID=<project_id>
# Backlog
curl -s http://localhost:5199/api/project/$PID/backlog
# Recent agent runs (transcripts)
curl -s "http://localhost:5199/api/project/$PID/conversations?limit=10"
# Scheduled jobs
curl -s http://localhost:5199/api/schedules | jq "[.[] | select(.project_id==\"$PID\")]"
# Active hiveminds
curl -s http://localhost:5199/api/hivemind/list | jq "[.[] | select(.project_id==\"$PID\")]"
# Registered processes
curl -s http://localhost:5199/api/processes | jq "[.[] | select(.project_id==\"$PID\")]"
```
### 3. Synthesize the report
Present a structured summary, not a raw dump. Sections:
- **Open backlog** — count of open / in-progress / blocked items, highlight high-priority titles
- **Recent activity** — last 3-5 agent sessions: what they worked on (use `last_user` field, not `first_user`)
- **Active automations** — running hiveminds, upcoming scheduled jobs (next fire time)
- **Live processes** — anything registered and still alive
- **Headline** — one sentence at the top: "Mostly idle — 3 open backlo...
Details
- Author
- ronle
- Repository
- ronle/clayrune
- Created
- 5 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
status
Show where the project stands right now, in plain language
0 Updated 1 weeks ago
khalilmaaouni Code & Development Listed
status
Show project status — git state, recent commits, open tasks, and memory summary
0 Updated today
VytCepas Code & Development Listed
status
Project dashboard, progress, what's done, what's next. Keywords: status, progress, dashboard, where am I, what's done, what's left, what's next, overview
2 Updated today
jvalin17