Skill570 repo starsupdated today
bernstein-status
The bernstein-status skill retrieves and displays the current operational state of the Bernstein orchestrator by executing a status script and parsing API data into a formatted dashboard. Use it when users request progress updates, ask about active agents and tasks, inquire about costs, or need alerts about failures or budget warnings during an orchestration run.
Install in Claude Code
Copygit clone --depth 1 https://github.com/sipyourdrink-ltd/bernstein /tmp/bernstein-status && cp -r /tmp/bernstein-status/packages/cursor-plugin/skills/bernstein-status ~/.claude/skills/bernstein-statusThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
# Bernstein Status
Show the current state of the Bernstein orchestrator.
## When to Use
- User asks "what's the status?" or "how's the build going?"
- User wants to see active agents, open tasks, or costs
- User asks about progress, failures, or alerts
- User wants a quick overview of the orchestration run
## Instructions
1. Run `scripts/status.sh` to fetch the full dashboard data from the Bernstein API.
2. Parse the JSON output and present a clear summary:
### Summary format
```
## Bernstein Status
**Agents:** {active_count} active | **Tasks:** {done}/{total} done | **Cost:** ${cost_usd}
### Active Agents
| Agent | Role | Model | Runtime | Task | Cost |
|-------|------|-------|---------|------|------|
| {id} | {role} | {model} | {runtime}m | {task_title} | ${cost} |
### Tasks
- {open} open, {claimed} claimed, {done} done, {failed} failed
### Alerts
- {alert messages if any}
### Cost Breakdown
- Budget: ${budget} | Spent: ${spent} ({percentage}%)
- Per model: {breakdown}
```
3. If the API is not reachable, tell the user to start Bernstein with `bernstein run`.
4. Highlight any alerts (failed tasks, budget warnings, stalled agents) prominently.More from this repository
orchestratorSubagent
Decomposes goals into parallel tasks, assigns them to CLI coding agents, verifies output, and merges results. Use when a task is too large for a single agent.
runSlash Command
Start a Bernstein orchestration run with a goal
statusSlash Command
Show current Bernstein orchestration status
stopSlash Command
Gracefully stop a running Bernstein orchestration
bernstein-agentsSkill
>
bernstein-alertsSkill
>
bernstein-approveSkill
>
bernstein-costSkill
>