source-command-sparc-code

Generates modular code from pseudocode and architecture using SPARC auto-coder workflows.

Updated May 11, 2026
One-click install
npx skills add https://github.com/Turgunoff/mebellar_app --skill source-command-sparc-code-turgunoff
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: source-command-sparc-code
Source: https://github.com/Turgunoff/mebellar_app/tree/main/.agents/skills/source-command-sparc-code
Command: npx skills add https://github.com/Turgunoff/mebellar_app --skill source-command-sparc-code-turgunoff

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It turns pseudocode and architecture specifications into clean, modular implementation code without manual boilerplate, enforcing clean architecture rules like file size limits and configuration-based environments. ## Core Features & Use Cases - Pseudocode-to-Code Generation: Writes modular code from pseudocode and architecture definitions, splitting components into files under 500 lines. - Configuration Discipline: Uses config files and environment abstractions instead of hardcoded secrets or environment values. - Multiple Invocation Paths: Runs via MCP tools (claude-flow sparc_mode), NPX CLI fallback, or a local Codex-flow installation, with memory storage for cross-session context. - Use Case: A developer has an architecture document for a REST API and asks the agent to implement the endpoints; the skill generates modular, config-driven code and stores decisions in memory for later tasks. ## Quick Start Ask the agent to run the sparc-code command to implement your REST API endpoints from the provided architecture and pseudocode.

Frequently Asked Questions about source-command-sparc-code

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run the sparc-code command to generate code?▼

Invoke it via the MCP tool mcp__claude-flow__sparc_mode with mode set to code and a task description, or fall back to the CLI with npx Codex-flow sparc run code followed by your task description.

What coding rules does the SPARC auto-coder follow?▼

It writes modular code using clean architecture principles, splits code into files under 500 lines, uses config files or environment abstractions, and never hardcodes secrets or environment values.

Can I use sparc-code without MCP tools available?▼

Yes, use the NPX CLI fallback: npx Codex-flow sparc run code with your task description. Options include --namespace for memory scoping and --non-interactive for unattended runs.

How does memory integration work with sparc-code?▼

You can store and query mode-specific context using mcp__claude-flow__memory_usage and memory_search with a namespace, or use npx Codex-flow memory store and query commands to persist decisions across sessions.

When should I use insert_content versus apply_diff?▼

Use insert_content when creating new files or when the target file is empty. Use apply_diff when modifying existing code, always providing complete search and replace blocks, and reserve search_and_replace as a last resort.