eforge-status
SolidCheck eforge run status and queue state via daemon tools
AI & Automation 66 stars
4 forks Updated today Apache-2.0
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# /eforge:status
Quick inline status check — queries the eforge daemon for current run state and queue contents.
## Workflow
### Step 0: Validate Config
Call `eforge_config` with `{ action: "validate" }`.
- If `configFound` is `false`, stop and tell the user: "No eforge config found. Run `/eforge:init` to initialize eforge in this project."
- Otherwise, continue.
### Step 1: Get Run Status
Call the `eforge_status` tool (no parameters needed).
- If the response indicates no active sessions, report:
> No active eforge builds. Use `/eforge:build` to enqueue work.
- **Stop here** if no active sessions.
### Step 2: Render Status
Parse the JSON response and display:
**Session**: `{sessionId}`
**Status**: `{status}` (running / completed / failed)
#### Plan Progress
If the response contains plan-level status, render a table:
| Plan | Branch | Status | Dependencies |
|------|--------|--------|-------------|
| `{planId}` | `{branch}` | `{status}` | `{dependsOn}` |
Status values: `pending`, `running`, `completed`, `failed`, `blocked`, `merged`
### Step 3: Queue State
Call the `eforge_queue_list` tool (no parameters needed).
Parse the response. If PRD files are found, display a summary:
**Queue**: `{count}` pending PRD(s)
For each pending PRD, show the title. If there are more than 5, show the first 5 and a count of remaining.
### Step 4: Summary
If the overall status is `running`, show:
> The daemon is processing the build in the background. Use `/eforge:status`...
Details
- Author
- eforge-build
- Repository
- eforge-build/eforge
- Created
- 2 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
status
Check eforge run status and queue state via MCP tools
66 Updated today
eforge-build Code & Development Solid
eforge-update
Check for eforge updates and guide through updating the CLI package and daemon
66 Updated today
eforge-build API & Backend Listed
eforge-restart
Safely restart the eforge daemon, checking for active builds first
66 Updated today
eforge-build AI & Automation Solid
eforge-init
Initialize eforge in the current project with an interactive setup flow
66 Updated today
eforge-build AI & Automation Listed
eforge-daemon-restart
Rebuild eforge from source and restart the daemon. Use during development after making code changes so the MCP tools pick up the latest build.
66 Updated today
eforge-build