General
factory-status - Claude MCP Skill
/factory-status - Check Factory Build Progress
SEO Guide: Enhance your AI agent with the factory-status tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to /factory-status - check factory build progress... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# /factory-status - Check Factory Build Progress **See what you've built, what's validated, what's installed, and what's next.** --- ## Usage ``` /factory-status ``` --- ## What This Command Does Shows comprehensive status of your factory work: - Skills generated (in generated-skills/) - Agents created (in .claude/agents/ or ~/.claude/agents/) - Hooks generated (in generated-hooks/) - Prompts generated (in conversation) - Validation status - Installation status - Next recommended steps --- ## Example Output ``` /factory-status ``` **Output**: ``` āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā Factory Status Report āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā š¦ Claude Skills Generated (2) 1. healthcare-analyzer/ Location: generated-skills/healthcare-analyzer/ Size: 45KB (SKILL.md + 3 Python files) Status: ā Validated ā Installed ā³ Not tested yet Next: /test-factory skill healthcare-analyzer 2. financial-reports/ Location: generated-skills/financial-reports/ Size: 32KB (SKILL.md + 2 Python files) Status: ā Validated ā Not installed yet Next: /install-skill generated-skills/financial-reports āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā š¤ Claude Agents Created (1) 1. code-reviewer Location: .claude/agents/code-reviewer.md Size: 8KB Status: ā Validated ā Active (project-level) Next: Test with: "Review my recent code changes" āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā š§ Claude Hooks Generated (3) 1. auto-format-python Location: generated-hooks/auto-format-python/ Event Type: PostToolUse Language: Python (Black formatter) Status: ā Validated ā Installed (user-level) Next: Test by editing a .py file 2. test-runner-js Location: generated-hooks/test-runner-js/ Event Type: SubagentStop Language: JavaScript (Jest) Status: ā Validated ā³ Not installed yet Next: /install-hook generated-hooks/test-runner-js 3. git-auto-add Location: generated-hooks/git-auto-add/ Event Type: PostToolUse Language: Generic (Git) Status: ā³ Not validated yet Next: /validate-output hook generated-hooks/git-auto-add āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā šÆ Mega-Prompts Generated (1) 1. Senior Backend Engineer Prompt Format: XML + Claude formats Size: ~5,200 tokens Status: ā Generated ā³ Not tested yet Next: Copy to Claude.ai and test āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā š Summary Total Generated: 7 outputs (2 skills, 1 agent, 3 hooks, 1 prompt) Validated: 5/7 (71%) Installed: 3/7 (43%) Tested: 0/7 (0%) āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā šÆ Recommended Next Steps 1. Validate git-auto-add hook: /validate-output hook generated-hooks/git-auto-add 2. Install test-runner-js hook: /install-hook generated-hooks/test-runner-js 3. Install financial-reports skill: /install-skill generated-skills/financial-reports 4. Test healthcare-analyzer skill: /test-factory skill healthcare-analyzer 5. Test auto-format-python hook: Edit a .py file and check if Black runs 6. Test Senior Backend Engineer prompt: Copy to Claude.ai and try a test request 7. Test code-reviewer agent: Make some code changes and see if it auto-invokes āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā Need help? - Build more: /build skill|prompt|agent|hook - Validate: /validate-output [type] [path] - Install: /install-skill [path] or /install-hook [path] - Test: /test-factory [type] [name] ``` --- ## Detection Logic The command scans: **For Skills**: ```bash # Check generated-skills/ directory ls generated-skills/*/SKILL.md # Check if installed ls ~/.claude/skills/*/SKILL.md ``` **For Agents**: ```bash # Check project-level ls .claude/agents/*.md # Check user-level ls ~/.claude/agents/*.md ``` **For Prompts**: - Analyzes recent conversation - Looks for generated prompts (XML, Claude, ChatGPT, Gemini formats) - Checks token count announcements **For Hooks**: ```bash # Check generated-hooks/ directory ls generated-hooks/*/hook.json # Check if installed (user-level) grep -r "hook.json" ~/.claude/settings.json # Check if installed (project-level) grep -r "hook.json" .claude/settings.json ``` --- ## Status Indicators **Validation Status**: - ā Validated - Passed /validate-output checks - ā³ Not validated - Run /validate-output - ā Issues found - Fix validation errors **Installation Status**: - ā Installed - Found in ~/.claude/skills/ or .claude/agents/ - ā³ Not installed - Run /install-skill - ā Not found - Check installation path **Testing Status**: - ā Tested - User has tested functionality - ā³ Not tested - Run /test-factory - ā Test failed - Review and fix issues --- ## Empty State ``` /factory-status ``` **If nothing generated yet**: ``` āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā Factory Status Report āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā No skills, prompts, agents, or hooks generated yet. Ready to start building? Quick start: /build Or be specific: /build skill - Build a custom Claude Skill /build prompt - Generate a mega-prompt /build agent - Create a Claude Code Agent /build hook - Create a Claude Code Hook āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā ``` --- ## Progress Tracking The command helps you track: - **What's complete**: Generated, validated, installed, tested - **What's pending**: Needs validation, installation, or testing - **What's next**: Clear action items - **Overall progress**: Percentage complete --- ## Use Cases ### Check After Building ``` # Generate something /build skill [Answer questions] [Skill generated] # Check status /factory-status Output: ā 1 skill generated ā³ Not validated yet Next: /validate-output skill generated-skills/my-skill ``` ### Track Session Progress ``` # At any time /factory-status See: - Everything built this session - What still needs attention - Recommended next actions ``` ### Before Ending Session ``` # Before you finish /factory-status Ensure: - All outputs validated ā - All outputs installed ā - All outputs tested ā - Ready to use in production ``` --- ## Example Session ``` User: /build skill [Generates healthcare-analyzer] User: /factory-status Output: 1 skill, not validated User: /validate-output skill generated-skills/healthcare-analyzer Output: ā Validation passed User: /factory-status Output: 1 skill, validated, not installed User: /install-skill generated-skills/healthcare-analyzer [Installation complete] User: /factory-status Output: 1 skill, validated, installed, not tested User: /test-factory skill healthcare-analyzer [Testing successful] User: /factory-status Output: 1 skill, ā complete (validated, installed, tested) ``` --- ## Tips **Use /factory-status to**: - Track what you've built - See what needs attention - Get next-step recommendations - Verify completeness before sharing **Run it**: - After each /build - Before /install-skill - After testing - Before ending session --- ## Related Commands - `/build` - Generate skills/prompts/agents/hooks - `/validate-output` - Check quality - `/install-skill` - Install skills - `/install-hook` - Install hooks - `/test-factory` - Test functionality --- **Track your progress from start to finish!** š
Signals
Information
- Repository
- alirezarezvani/claude-code-skill-factory
- Author
- alirezarezvani
- Last Sync
- 3/12/2026
- Repo Updated
- 3/12/2026
- Created
- 1/16/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-webkit
Upgrade Bun's Webkit fork to the latest upstream version of Webkit.
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
fastmcp-client-cli
Query and invoke tools on MCP servers using fastmcp list and fastmcp call. Use when you need to discover what tools a server offers, call tools, or integrate MCP servers into workflows.
Related Guides
Python Django Best Practices: A Comprehensive Guide to the Claude Skill
Learn how to use the python django best practices Claude skill. Complete guide with installation instructions and examples.
Mastering Python and TypeScript Development with the Claude Skill Guide
Learn how to use the python typescript guide Claude skill. Complete guide with installation instructions and examples.
Mastering Data Science with Claude: A Complete Guide to the Pandas Scikit-Learn Skill
Learn how to use the pandas scikit learn guide Claude skill. Complete guide with installation instructions and examples.