Back to Discover

marketplace

skill

fyrsmithlabs

View on GitHub
0 starsApache-2.0Synced Aug 2, 2026

Install to Claude Code

/plugin marketplace add fyrsmithlabs/marketplace

README

Marketplace

Version Build License Gitleaks

A Claude Code plugin marketplace providing skills, commands, and agents for fyrsmithlabs project standards and workflows.


Prerequisites

Before installing, ensure you have:

  • Claude Code CLI - Required for all plugins
  • GitHub CLI (gh) 2.0+ - Required for planning features (install)
  • contextd MCP server - Required for contextd plugin (see contextd Setup)

Quick Start

Installation

Add the marketplace to your Claude Code settings:

# Install via Claude Code plugin marketplace
claude plugin install fyrsmithlabs/marketplace

First Commands to Try

# Initialize a project with standards
/fs-dev:init

# Run a brainstorm session for a new feature
/fs-dev:brainstorm "Add user authentication"

# Check your daily standup
/fs-dev:standup

# Run multi-agent code review
/fs-dev:consensus-review

Plugins

This marketplace contains five plugins that can be installed independently:

PluginVersionComponentsPurpose
fs-dev1.11.014 skills, 16 agents, 12 commandsDevelopment standards, workflows, planning
cc-skills-golangexternal40+ Go skillsGo development skills (referenced from GitHub)
contextd1.2.05 skills, 2 agents, 8 commandsCross-session memory via MCP
fs-design1.0.01 skill, 2 agents, 1 commandDesign system compliance
open-policy-agent0.1.07 skills, 4 agents, 6 commandsOPA/Rego policy authoring and validation

Featured Commands

/fs-dev:init - Project Setup

Set up a project to follow fyrsmithlabs standards with interactive wizard, auto-detection, and compliance checking.

# Full interactive wizard
/fs-dev:init

# Audit compliance without making changes
/fs-dev:init --check

# Quick setup (skip wizard)
/fs-dev:init --quick

# Check for drift from standards
/fs-dev:init --validate

/fs-dev:brainstorm - Feature Design

Interactive design interview with complexity assessment, requirements gathering, and GitHub planning.

# Start a brainstorm session
/fs-dev:brainstorm "Add OAuth support"

# Brainstorm creates GitHub Issues automatically in Phase 6

/fs-dev:consensus-review - Multi-Agent Code Review

Run parallel code review with 6 specialized agents. All agents have veto power by default. Features adaptive token budgets, context-folding isolation for large scopes, and progressive summarization.

# Review staged changes
/fs-dev:consensus-review

# Review specific path
/fs-dev:consensus-review src/auth/

# Ignore veto power (advisory only)
/fs-dev:consensus-review --ignore-vetos

# Run subset of agents
/fs-dev:consensus-review --agents security,code-quality,go

/contextd:checkpoint - Session State Management

Save your session state for later resumption. Essential before clearing context or ending a session.

# Save current session state
/contextd:checkpoint

# Checkpoints capture:
# - Accomplishments
# - In-progress work
# - Next steps

/fs-design:check - Design Compliance Audit

Audit CSS, templates, and documentation for Terminal Elegance design system compliance.

# Scan default locations
/fs-design:check

# Check specific file
/fs-design:check static/css/main.css

# Check directory
/fs-design:check internal/templates/

Common Workflows

New Feature Development

# 1. Design the feature
/fs-dev:brainstorm "Add user authentication"

# 2. Create GitHub issues (automatic from brainstorm Phase 6)
# or manually:
/fs-dev:plan "Add user authentication"

# 3. Code implementation...

# 4. Multi-agent code review
/fs-dev:consensus-review

# 5. Commit with standards
git commit -m "feat: add user authentication"

Session Management (with contextd)

# 1. Check current state
/contextd:status

# 2. Search for relevant past learnings
/contextd:search authentication patterns

# 3. Work on tasks...

# 4. Save progress before clearing context
/contextd:checkpoint

# 5. Record what you learned
/contextd:remember

Codebase Discovery

# Full codebase analysis
/fs-dev:discover

# Security-focused analysis
/fs-dev:discover --lens security

# Performance-focused analysis
/fs-dev:discover --lens performance

Daily Standup

# Today's status with GitHub PR/Issue synthesis
/fs-dev:standup

# Weekly summary
/fs-dev:standup --week

Structure

marketplace/
├── .claude-plugin/           # Root marketplace manifest
├── plugins/                  # All plugins
│   ├── fs-dev/               # Core development plugin (13 skills, 15 agents, 12 commands)
│   ├── contextd/             # Cross-session memory plugin (5 skills, 2 agents, 8 commands)
│   └── fs-design/            # Design system plugin (1 skill, 2 agents, 1 command)
├── hooks/                    # Claude Code hooks (PreCompact only)
└── docs/                     # Documentation
    └── plugins/              # Plugin-specific docs

contextd Setup

⚠️ REQUIRED: The contextd plugin requires the contextd MCP server. Without it, all /contextd:* commands will fail. Setup takes ~2 minutes.

Option A: Homebrew (macOS/Linux)

brew tap fyrsmithlabs/contextd https://github.com/fyrsmithlabs/contextd
brew install contextd
ctxd mcp install
# Restart Claude Code, then: /contextd:status

Option B: Direct Download

Download from GitHub Releases, then:

tar xzf contextd_*.tar.gz
sudo mv contextd /usr/local/bin/
ctxd mcp install
# Restart Claude Code, then: /contextd:status

Note: On first run, contextd auto-downloads ONNX runtime (~100MB). This is one-time only.

Troubleshooting

ErrorFix
Unknown tool: mcp__contextd__*Run ctxd mcp install and restart Claude Code
contextd: command not foundInstall via Homebrew or go install
Connection errorsRun ctxd mcp status to diagnose

Full documentation: contextd Plugin Guide


Documentation


All Commands Reference

Core Commands (fs-dev)

CommandPurpose
/fs-dev:initSet up project to follow fyrsmithlabs standards
/fs-dev:yagniManage YAGNI/KISS enforcement settings
/fs-dev:brainstormInteractive design interview with complexity-aware questioning
/fs-dev:planFull planning workflow - assess, brainstorm, create GitHub Issues
/fs-dev:discoverRun codebase discovery with optional lens filtering
/fs-dev:standupDaily standup with GitHub PR/Issue synthesis
/fs-dev:consensus-reviewMulti-agent code review with veto power
/fs-dev:test-skillRun pressure test scenarios against marketplace skills
/fs-dev:comp-analysisGenerate executive summary of competitor analysis
/fs-dev:spec-refinementDeep-dive interview to refine specification documents
/fs-dev:app-interviewComprehensive app ideation with competitor analysis

contextd Commands

CommandPurpose
/contextd:searchSemantic search across memories, remediations, and code
/contextd:rememberRecord a learning or insight from the current session
/contextd:checkpointSave session state (accomplishments, in-progress, next steps)
/contextd:diagnoseDiagnose errors using AI analysis and past fixes
/contextd:statusShow contextd status for current session and project
/contextd:reflectAnalyze memories for behavior patterns and policy compliance
/contextd:orchestrateExecute multi-task orchestration from GitHub issues
/contextd:helpList all available contextd skills and commands

Design Commands (fs-design)

CommandPurpose
/fs-design:checkAudit files for Terminal Elegance design system compliance

License

Apache-2.0

Rendered live from fyrsmithlabs/marketplace's GitHub README — not stored, always reflects the source repo.

5 Plugins

NameDescriptionCategorySource
cc-skills-golangAI Agent Skills for production-ready Go projects. 40+ atomic, cross-referencing Go skills covering code quality, architecture, concurrency, testing, performance, and tooling. Maintained externally by samber.developmentsamber/cc-skills-golang
fs-devClaude Code plugins for fyrsmithlabs project standards and workflows. Includes YAGNI/KISS enforcement, git-repo-standards, git-workflows with multi-agent consensus review, and GitHub planning integration. Go idiom guidance is provided by the external cc-skills-golang plugin.development./plugins/fs-dev/
contextdCross-session memory and learning for Claude Code. Provides semantic search, memory recording, checkpoints, error remediation, and multi-agent orchestration via the contextd MCP server.memory./plugins/contextd/
fs-designTerminal Elegance design system compliance checking for FyrsmithLabs products. Audits CSS, templates, and documentation for hardcoded values, accessibility issues, and brand consistency.design./plugins/fs-design/
open-policy-agentOPA/Rego policy authoring, validation, testing, and benchmark-aligned spec generation for Kubernetes, Terraform, Docker, cloud providers, and service mesh platforms.security./plugins/open-policy-agent/

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.