domain-organized skill package installation across 8+ ai platforms
Installs modular, self-contained skill packages (48 total across 6 domains: Marketing, Product, Engineering, C-Level, Project Management, Regulatory/Quality) into Claude Code, Cursor, VS Code, Copilot, Goose, Amp, Codex, Letta, and OpenCode via standardized marketplace.json configuration and platform-specific plugin.json manifests. Each skill package bundles Python CLI tools, reference frameworks, templates, and documentation following a 4-component structure (SKILL.md, scripts/, references/, assets/), enabling agents to discover and load domain expertise without manual configuration.
Unique: Uses domain-based organization (6 skill domains) with standardized 4-component package structure (SKILL.md + scripts/ + references/ + assets/) and relative path resolution (../../) to enable agent-skill separation, allowing the same skill to be installed across 8+ heterogeneous platforms without platform-specific rewrites. Marketplace.json provides centralized discovery while platform-specific plugin.json manifests handle registration.
vs alternatives: Broader platform coverage (8+ agents) than Copilot Extensions (GitHub-only) or Claude Projects (Claude-only), with domain-organized skills reducing cognitive load vs flat plugin registries like OpenAI's plugin store.
python cli tool execution with standard library only constraint
Executes 68+ production-ready Python CLI tools embedded in skill packages that use only Python standard library (no external dependencies like requests, pandas, or numpy) to ensure portability across agent runtimes and reduce installation friction. Tools are invoked by agents as executable scripts (tool1.py, tool2.py) with stdin/stdout interfaces, enabling agents to chain tool outputs without requiring LLM calls between steps. Each tool is documented in scripts/README.md with usage examples and expected input/output formats.
Unique: Enforces standard library-only constraint across all 68+ tools to guarantee zero external dependencies, enabling tools to run in any Python environment (cloud functions, containers, restricted runtimes) without pip install or dependency resolution. CLI-first design with stdin/stdout interfaces allows agents to chain tools deterministically without LLM calls between steps, reducing latency and cost.
vs alternatives: More portable than Copilot Extensions (which require npm/Node.js ecosystem) or OpenAI plugins (which require external API hosting). Faster tool chaining than LLM-based orchestration (e.g., ReAct agents) because tools execute synchronously without LLM inference between steps.
c-level advisory skills with strategic planning and executive decision support
Provides 2 production-ready C-level advisory skills (c-level-advisor/ domain) designed for executive decision-making and strategic planning: CEO advisor skill (business strategy, market analysis, competitive positioning, board reporting) and CTO advisor skill (technology strategy, architecture decisions, engineering team management, technical roadmap). Skills bundle Python CLI tools for business metrics calculation and analysis, reference frameworks for strategic planning methodologies (OKRs, balanced scorecard, technology strategy frameworks), and templates (board decks, strategic plans, technology roadmaps). cs-ceo-advisor and cs-cto-advisor agents are pre-configured to use C-level skills combined with project management and regulatory skills. C-level advisory is an emerging domain (2 skills) with planned expansion.
Unique: Provides 2 emerging C-level advisory skills (CEO advisor, CTO advisor) with Python CLI tools for business metrics and analysis, reference frameworks for strategic planning (OKRs, balanced scorecard, technology strategy), and pre-configured agents (cs-ceo-advisor, cs-cto-advisor) that combine C-level skills with project management and regulatory skills for holistic executive support.
vs alternatives: More structured than generic executive coaching (e.g., ChatGPT prompts) because it includes strategic planning frameworks and business metrics tools. More accessible than expensive consulting firms because agents provide 24/7 strategic advice at agent cost.
project management and compliance skills with regulatory and quality frameworks
Provides 6 project management skills (project-management/ domain) and 12 regulatory/quality management skills (ra-qm-team/ domain) covering project planning, team coordination, regulatory compliance, quality assurance, and risk management. PM skills include: project planning skill (timeline creation, resource allocation, risk planning), agile/scrum skill (sprint planning, backlog management, velocity tracking), stakeholder management skill (communication plans, status reporting), and 3 additional PM skills. Regulatory/Quality skills include: compliance skill (regulatory requirement tracking, audit preparation), quality assurance skill (QA strategy, test planning, defect management), risk management skill (risk identification, mitigation planning), and 9 additional regulatory/quality skills. Each skill bundles Python CLI tools for project metrics and compliance tracking, reference frameworks (PMBOK, ISO standards, regulatory requirements), and templates (project plans, compliance checklists, audit reports).
Unique: Combines 6 project management skills with 12 regulatory/quality management skills (18 total) to provide comprehensive project and compliance oversight. PM skills focus on planning and coordination (PMBOK frameworks), while regulatory/quality skills focus on compliance and standards (ISO, regulatory requirements). Python CLI tools provide metrics calculation and compliance tracking, reference frameworks provide methodologies, and templates provide ready-to-use checklists and plans.
vs alternatives: More comprehensive than project management tools alone (e.g., Jira) because it includes compliance and quality management. More structured than generic compliance consulting (e.g., ChatGPT prompts) because it includes regulatory frameworks and audit templates.
agent-native slash commands for quick skill access
Provides optional slash commands (/.claude/ directory) that enable quick access to skills and agents within Claude Code and compatible platforms. Slash commands are shortcuts that trigger skill execution or agent instantiation without explicit tool calling. For example, /marketing-content might trigger the content creator skill, /code-review might trigger the code review skill, /ceo-advisor might instantiate the CEO advisor agent. Slash commands are platform-specific (Claude Code, Cursor, VS Code) and optional — agents can also access skills via explicit tool calling. Slash commands improve user experience by reducing friction for common operations.
Unique: Provides optional slash commands (/.claude/ directory) that enable quick skill and agent access within Claude Code and compatible platforms, improving UX by reducing friction for common operations. Slash commands are platform-specific shortcuts that trigger skill execution or agent instantiation without explicit tool calling.
vs alternatives: More discoverable than explicit tool calling (e.g., function_call JSON) because slash commands appear in platform autocomplete. More user-friendly than command-line tools because slash commands integrate with IDE UI.
5-layer architecture with agent-skill separation and relative path resolution
Implements a 5-layer architecture (Distribution, Agent Orchestration, Skill Implementation, Governance, Automation) that decouples agents from skills using relative path resolution (../../) to enable agents to discover and load skills dynamically without hardcoding paths. Agents (cs-content-creator, cs-demand-gen-specialist, cs-product-manager, cs-ceo-advisor, cs-cto-advisor) live in agents/ directory and reference skills via relative paths, allowing the same agent definition to work across different installation contexts (local, cloud, container). Governance layer enforces standards (quality gates, testing, CI/CD) across all skills.
Unique: Uses relative path resolution (../../) to decouple agents from skills, enabling the same agent definition to work across different installation contexts without path hardcoding. 5-layer architecture (Distribution → Agent Orchestration → Skill Implementation → Governance → Automation) provides clear separation of concerns, with governance layer enforcing standards across all 48 skills via quality gates, testing, and CI/CD integration.
vs alternatives: More modular than monolithic agent frameworks (e.g., LangChain agents with hardcoded tools) because skills are independently versioned and deployed. Governance layer provides better quality control than plugin ecosystems without centralized oversight (e.g., OpenAI plugin store).
domain-specific agent orchestration with role-based skill binding
Defines 5 production agents (cs-content-creator, cs-demand-gen-specialist, cs-product-manager, cs-ceo-advisor, cs-cto-advisor) that bind to domain-specific skill subsets via agent definitions in agents/ directory. Each agent is configured with CLAUDE.md and plugin.json manifests that specify which skills to load (e.g., cs-ceo-advisor loads c-level-advisor skills + project-management skills). Agents are role-based (content creator, demand gen specialist, product manager, CEO, CTO) and can be instantiated independently or composed into multi-agent systems. Agent definitions include prompt templates, tool bindings, and execution constraints.
Unique: Implements role-based agent orchestration where each agent (cs-content-creator, cs-ceo-advisor, cs-cto-advisor) is bound to a curated subset of skills via agent definitions, enabling teams to create specialized agents without exposing irrelevant tools. Agent definitions include CLAUDE.md (prompt templates) and plugin.json (tool bindings), allowing agents to be version-controlled and deployed independently.
vs alternatives: More structured than ad-hoc agent creation (e.g., custom prompts in Claude) because skill bindings are explicit and version-controlled. Cleaner than monolithic agents with all tools available because role-based binding reduces cognitive load and prevents tool conflicts.
standardized skill package documentation and knowledge base generation
Generates comprehensive skill documentation via SKILL.md master documents (500-1500 lines per skill) that bundle domain expertise, executable Python tools, reference frameworks, and templates into self-contained packages. Each SKILL.md includes skill overview, tool documentation (scripts/README.md), reference frameworks (references/ directory with markdown files), and user-facing templates (assets/ directory). Documentation is human-readable (markdown) and machine-parseable (structured sections with consistent formatting), enabling agents to extract tool signatures, usage examples, and domain knowledge. Reference frameworks provide expert knowledge bases (e.g., marketing frameworks, engineering best practices) that agents can cite or extend.
Unique: Bundles domain expertise, executable tools, and reference frameworks into self-contained SKILL.md documents (500-1500 lines) with standardized structure (overview, tools, frameworks, templates), enabling both human understanding and machine parsing. Reference frameworks provide expert knowledge bases (marketing, engineering, compliance) that agents can cite, extending beyond simple tool documentation.
vs alternatives: More comprehensive than tool-only documentation (e.g., OpenAI function schemas) because it includes domain expertise and reference frameworks. More structured than free-form knowledge bases because SKILL.md follows a consistent template, enabling automated parsing and discovery.
+5 more capabilities