### Project Quick Start Installation Source: https://github.com/agricidaniel/claude-skills/blob/main/documentation/delivery/sprint-11-05-2025/plan.md Basic commands to clone the repository and begin setup. ```bash git clone https://github.com/alirezarezvani/claude-skills.git cd claude-skills # TODO: ./install.sh (Phase 3) ``` -------------------------------- ### Project Setup and Initialization Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/codebase-onboarding/references/onboarding-template.md Steps to clone the repository, install dependencies, set up the database, and start the development server. ```bash git clone https://github.com/org/repo cd repo pnpm install docker compose up -d cp .env.example .env pnpm db:migrate pnpm db:seed pnpm dev pnpm test ``` -------------------------------- ### Campaign Content Planning Setup Source: https://github.com/agricidaniel/claude-skills/blob/main/agents/marketing/cs-content-creator.md This example demonstrates setting up a content calendar from a template and reviewing the analytics guide for performance tracking. ```bash # Set up content calendar from template cp ../../marketing-skill/content-creator/assets/content_calendar_template.md campaign-calendar.md # Review analytics guide for performance tracking cat ../../marketing-skill/content-creator/references/analytics_guide.md ``` -------------------------------- ### Guide OAuth Setup Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/agents/cs-workspace-admin.md Initiate a guided setup for OAuth authentication, including listing scopes and generating .env files. Specify the desired guide with the --guide flag. ```python python3 ../../engineering-team/google-workspace-cli/scripts/auth_setup_guide.py --guide oauth ``` -------------------------------- ### Initialize and Run Project Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/senior-fullstack/SKILL.md Commands to verify the scaffold, install dependencies, configure the environment, and start the development server. ```bash ls my-saas-app/package.json # 3. Navigate and install cd my-saas-app npm install # 4. Configure environment cp .env.example .env.local # 5. Run quality check python ../scripts/code_quality_analyzer.py . # 6. Start development npm run dev ``` -------------------------------- ### Development Setup Commands Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/tdd-guide/README.md Commands for cloning the repository, installing dependencies, and running quality checks. ```bash # Clone repository git clone https://github.com/your-org/tdd-guide-skill.git cd tdd-guide-skill # Install development dependencies pip install -r requirements-dev.txt # Run tests pytest tests/ -v # Run linter pylint *.py # Run type checker mypy *.py ``` -------------------------------- ### Command Usage Examples Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/autoresearch-agent/skills/setup/SKILL.md Use these commands to trigger interactive setup, provide arguments directly, or list existing configurations and evaluators. ```text /ar:setup # Interactive mode /ar:setup engineering api-speed src/api.py "pytest bench.py" p50_ms lower /ar:setup --list # Show existing experiments /ar:setup --list-evaluators # Show available evaluators ``` -------------------------------- ### Example company-context.md Content Source: https://github.com/agricidaniel/claude-skills/blob/main/c-level-advisor/SKILL.md This is an example of the content within the company-context.md file after running the /cs:setup command and providing answers. ```markdown # Company Context - Name: Acme Inc. - Stage: Seed ($800K ARR) - Industry: B2B SaaS - Team size: 12 - Key metrics: 15% MoM growth, 18-month runway - Top priorities: Series A readiness, enterprise GTM ``` -------------------------------- ### Execute New Project Setup Workflow Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/CLAUDE.md Scaffolds a new project, initializes services, runs database migrations, and starts the development environment. ```bash # 1. Scaffold project python senior-fullstack/scripts/project_scaffolder.py my-app --type nextjs-graphql # 2. Start services cd my-app && docker-compose up -d # 3. Run migrations npm run migrate # 4. Start development npm run dev ``` -------------------------------- ### Install TDD Guide Skill via CLI Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/tdd-guide/README.md Commands to clone the repository and install the skill into project-level or user-level directories. ```bash # Option A: Clone from repository git clone https://github.com/your-org/tdd-guide-skill.git # Option B: Download ZIP and extract ``` ```bash # Project-level (recommended for team projects) cp -r tdd-guide /path/to/your/project/.claude/skills/ # User-level (available for all projects) cp -r tdd-guide ~/.claude/skills/ ``` ```bash ls ~/.claude/skills/tdd-guide/ # Should show: SKILL.md, *.py files, samples ``` -------------------------------- ### Numbered Steps Template and Example Source: https://github.com/agricidaniel/claude-skills/blob/main/marketing-skill/ai-seo/references/content-patterns.md Templates for creating actionable how-to guides. Pair these with HowTo schema markup for better search visibility. ```markdown ## How to [Task] 1. **[Verb phrase]** — [1-2 sentence explanation of this specific step] 2. **[Verb phrase]** — [1-2 sentence explanation] 3. **[Verb phrase]** — [1-2 sentence explanation] 4. **[Verb phrase]** — [1-2 sentence explanation] 5. **[Verb phrase]** — [1-2 sentence explanation] ``` ```markdown ## How to Reduce SaaS Churn 1. **Define your activation event** — Identify the specific action that signals a user has experienced core product value. For Slack, it's 2,000 messages sent. For Dropbox, it's saving the first file. 2. **Instrument the activation funnel** — Add event tracking from signup to activation. Find the step where most users drop off — that's your highest-leverage point. 3. **Build a customer health score** — Combine login frequency, feature adoption, and support ticket volume into a single score. Customers below 40 get proactive outreach. 4. **Segment churn by cohort** — Not all churn looks the same. Compare churn rates by acquisition channel, onboarding path, and company size to find patterns. 5. **Interview churned customers** — The customers who left quietly are more valuable than the ones who complained. Call 10 churned accounts per month and ask what they were trying to accomplish. ``` -------------------------------- ### Google Workspace CLI Usage Examples Source: https://github.com/agricidaniel/claude-skills/blob/main/commands/google-workspace.md Demonstrates various ways to use the Google Workspace CLI for setup, auditing services, listing and searching recipes, running specific recipes with dry-run options, describing recipes, and analyzing output with filtering and formatting. ```bash /google-workspace setup ``` ```bash /google-workspace audit --services gmail,drive --json ``` ```bash /google-workspace recipe list --persona pm ``` ```bash /google-workspace recipe search "email" ``` ```bash /google-workspace recipe run standup-report --dry-run ``` ```bash /google-workspace recipe describe morning-briefing ``` ```bash /google-workspace analyze --filter "mimeType=pdf" --select "name,size" --format table ``` -------------------------------- ### Codex CLI Quickstart Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/llm-wiki/references/cross-tool-setup.md This example shows how to use the LLM Wiki plugin with the Codex CLI. Codex automatically reads AGENTS.md and supports natural language commands for ingestion and querying. ```bash cd codex > ingest raw/paper.pdf into the wiki > query: what does the paper say about X? ``` -------------------------------- ### Executive Assistant: Morning Briefing Command Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/google-workspace-cli/assets/persona-profiles.md Use this command to get a summary of your schedule and inbox at the start of the day. No specific setup is required beyond having the gws CLI installed and configured. ```bash gws helpers morning-briefing ``` -------------------------------- ### README.md Structure Template Source: https://github.com/agricidaniel/claude-skills/blob/main/standards/documentation/documentation-standards.md A template for the main README.md file of a project, including project title, description, quick start guide, features, installation, and usage sections. ```markdown # Project Title [1-sentence project description] ## Quick Start [Installation and first use - 30 seconds] ## Features - Feature 1 - Feature 2 - Feature 3 ## Installation [Detailed installation steps] ## Usage [Basic usage examples] ``` -------------------------------- ### Install Gemini CLI Skills Source: https://github.com/agricidaniel/claude-skills/blob/main/README.md Clone the repository, navigate to the directory, and run the setup script to install skills for Gemini CLI. After setup, you can activate skills using the `activate_skill` command. ```bash git clone https://github.com/alirezarezvani/claude-skills.git cd claude-skills ./scripts/gemini-install.sh > activate_skill(name="senior-architect") ``` -------------------------------- ### Manual Installation for OpenAI Codex Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/getting-started.md Clone the repository and run the Codex installation script for manual setup. ```bash git clone https://github.com/alirezarezvani/claude-skills.git ./scripts/codex-install.sh ``` -------------------------------- ### Installation and Test Execution Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/interview-system-designer/README.md Commands to prepare the environment and run the core system scripts with sample data. ```bash # Clone or download the skill directory cd interview-system-designer/ # Make scripts executable (optional) chmod +x *.py # Test with sample data python3 loop_designer.py --role "Senior Software Engineer" --level senior python3 question_bank_generator.py --role "Product Manager" --level mid python3 hiring_calibrator.py --input assets/sample_interview_results.json ``` -------------------------------- ### Example /wiki-init Commands Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/commands/wiki-init.md These examples demonstrate how to use the /wiki-init command with different parameters for creating LLM Wiki vaults. ```bash /wiki-init ~/vaults/research --topic "LLM interpretability" ``` ```bash /wiki-init ./book-wiki --topic "The Power Broker — Robert Caro" --tool all ``` ```bash /wiki-init ~/vaults/founders --topic "SaaS founder playbook" --tool codex ``` -------------------------------- ### Install Development Tools Skills Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/README.md Installs skills related to development tools, including TDD Guide and Tech Stack Evaluator. Uses npx for installation. ```bash npx ai-agent-skills install alirezarezvani/claude-skills/engineering-team/tdd-guide ``` ```bash npx ai-agent-skills install alirezarezvani/claude-skills/engineering-team/tech-stack-evaluator ``` -------------------------------- ### Resolved Yesterday Source: https://github.com/agricidaniel/claude-skills/blob/main/project-management/jira-expert/references/jql-examples.md Get issues that were resolved yesterday. This includes issues resolved from the start of yesterday up to the start of today. ```jql resolved >= startOfDay(-1d) AND resolved < startOfDay() ``` -------------------------------- ### Example: Initialize Book Wiki with All Tools Source: https://github.com/agricidaniel/claude-skills/blob/main/commands/wiki-init.md Example of initializing a book wiki vault with the topic 'The Power Broker — Robert Caro' and integrating all supported LLM CLI tools. ```bash /wiki-init ./book-wiki --topic "The Power Broker — Robert Caro" --tool all ``` -------------------------------- ### Promotion Workflow Example Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/self-improving-agent/reference/promotion-rules.md This sequence outlines the steps for promoting a learning, from identification to verification. ```bash 1. /si:review identifies candidate 2. Confirm the pattern is still valid 3. Distill into one-line instruction 4. /si:promote writes to CLAUDE.md or rules/ 5. Remove from MEMORY.md 6. Verify with /si:status ``` -------------------------------- ### Onboarding Questionnaire Prompts Source: https://github.com/agricidaniel/claude-skills/blob/main/c-level-advisor/SKILL.md These are the prompts the /cs:setup command will walk you through to gather essential company information. ```text Q1. What is your company name and one-line description? Q2. What stage are you at? (Idea / Pre-seed / Seed / Series A / Series B+) Q3. What is your current ARR (or MRR) and runway in months? Q4. What is your team size and structure? Q5. What industry and customer segment do you serve? Q6. What are your top 3 priorities for the next 90 days? Q7. What is your biggest current risk or blocker? ``` -------------------------------- ### Run Workspace Diagnostics and Auth Setup Source: https://github.com/agricidaniel/claude-skills/blob/main/agents/engineering-team/cs-workspace-admin.md Performs pre-flight checks, guides the user through OAuth setup, and validates service connectivity. ```bash python3 ../../engineering-team/google-workspace-cli/scripts/gws_doctor.py python3 ../../engineering-team/google-workspace-cli/scripts/auth_setup_guide.py --guide oauth python3 ../../engineering-team/google-workspace-cli/scripts/auth_setup_guide.py --validate --json ``` -------------------------------- ### Install Playwright Manually Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/playwright-pro/skills/init/SKILL.md Installs Playwright as a development dependency and downloads browser binaries. Use this if you prefer a manual setup over the init command. ```bash npm install -D @playwright/test npx playwright install --with-deps chromium ``` -------------------------------- ### Example Commands for /pipeline Source: https://github.com/agricidaniel/claude-skills/blob/main/commands/pipeline.md Practical examples for executing detection and generation tasks on a local repository. ```bash /pipeline detect --repo ./my-project /pipeline generate --platform github --repo . /pipeline generate --platform gitlab --repo . ``` -------------------------------- ### Markdown Migration Guide Template Source: https://github.com/agricidaniel/claude-skills/blob/main/documentation/GROWTH_STRATEGY.md Use this markdown template to create a migration guide for breaking changes in a skill. Include details on the changes, migration steps, and before/after examples. ```markdown # Migration Guide: {Skill Name} v{X}.0 ## Breaking Changes - Change 1: {Description and impact} - Change 2: {Description and impact} ## Migration Steps 1. Step 1 2. Step 2 ## Before/After Examples [Code examples showing old vs new] ``` -------------------------------- ### Installation: Running the Script Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/skill-tester/assets/sample-skill/SKILL.md This command demonstrates how to navigate to the scripts directory and run the text processor script, showing the help message. ```bash cd scripts/ python text_processor.py --help ``` -------------------------------- ### Get gws CLI Version Info Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/google-workspace-cli/references/troubleshooting.md Check the installed version of the gws CLI tool. ```bash gws --version ``` -------------------------------- ### Full product launch setup Source: https://github.com/agricidaniel/claude-skills/blob/main/orchestration/ORCHESTRATION.md Initial configuration for a B2B SaaS product launch. ```text Objective: Launch invoicing tool for freelancers Team: 1 developer, 1 marketer Timeline: 6 weeks Budget: $3K ``` -------------------------------- ### Setup System Prompt Experiment Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/autoresearch-agent/references/experiment-domains.md Use this command to set up an experiment for optimizing system prompts. Ensure `tests/cases.json` is available with test inputs and expected outputs. ```bash python scripts/setup_experiment.py \ --domain prompts \ --name support-bot \ --target prompts/support-system.md \ --eval "python .autoresearch/prompts/support-bot/evaluate.py" \ --metric quality_score \ --direction higher \ --evaluator llm_judge_prompt ``` -------------------------------- ### GitHub Actions CI/CD Workflow Example Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/skills/engineering-team/senior-devops.md An example of a GitHub Actions workflow file for a CI/CD pipeline, including checkout, Node.js setup, testing, Docker image build, and deployment steps. ```yaml # .github/workflows/ci.yml name: CI/CD Pipeline on: push: branches: [main, develop] pull_request: branches: [main] jobs: build-and-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: '20' cache: 'npm' - run: npm ci - run: npm run lint - run: npm test -- --coverage - name: Upload coverage uses: codecov/codecov-action@v4 build-docker: needs: build-and-test runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Build and push image uses: docker/build-push-action@v5 with: push: ${{ github.ref == 'refs/heads/main' }} tags: ghcr.io/${{ github.repository }}:${{ github.sha }} deploy: needs: build-docker if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - name: Deploy to ECS run: | aws ecs update-service \ --cluster production \ --service app-service \ --force-new-deployment ``` -------------------------------- ### HowTo Schema Example Source: https://github.com/agricidaniel/claude-skills/blob/main/marketing-skill/schema-markup/references/schema-types-guide.md Provides step-by-step instructions for a task. Ensure steps are visible on the page and use ISO 8601 for durations. ```json { "@context": "https://schema.org", "@type": "HowTo", "name": "How to change a bike tire", "step": [ { "@type": "HowToStep", "name": "Step 1", "text": "Loosen the nuts on the wheel.", "image": "https://example.com/step1.jpg" }, { "@type": "HowToStep", "name": "Step 2", "text": "Remove the wheel from the bike." } ], "totalTime": "PT30M" } ``` -------------------------------- ### 5 Whys Root Cause Analysis Example Source: https://github.com/agricidaniel/claude-skills/blob/main/ra-qm-team/fda-consultant-specialist/references/fda_capa_requirements.md An example demonstrating the 5 Whys technique to identify the root cause of a device failing final test, starting from the observed problem and iteratively asking 'Why?'. ```text Problem: 5% of devices fail functional test at final inspection Why 1: Component X is out of tolerance Why 2: Component X was accepted at incoming inspection Why 3: Incoming inspection sampling missed defective lot Why 4: Sampling plan inadequate for component criticality Why 5: Risk classification of component not updated after design change Root Cause: Risk classification process did not include design change trigger ``` -------------------------------- ### Configure Database Connection Pooling Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/senior-fullstack/references/architecture_patterns.md Setup examples for PostgreSQL native pools and Prisma client connection limits. ```typescript // PostgreSQL with connection pool const pool = new Pool({ host: process.env.DB_HOST, database: process.env.DB_NAME, user: process.env.DB_USER, password: process.env.DB_PASSWORD, max: 20, // Maximum connections idleTimeoutMillis: 30000, // Close idle connections connectionTimeoutMillis: 2000, }); // Prisma with connection pool const prisma = new PrismaClient({ datasources: { db: { url: `${process.env.DATABASE_URL}?connection_limit=20&pool_timeout=10`, }, }, }); ``` -------------------------------- ### Example: Initialize Founders Wiki with Codex Tool Source: https://github.com/agricidaniel/claude-skills/blob/main/commands/wiki-init.md Example of initializing a wiki vault for SaaS founders, integrating the Codex tool, and setting the topic to 'SaaS founder playbook'. ```bash /wiki-init ~/vaults/founders --topic "SaaS founder playbook" --tool codex ``` -------------------------------- ### Install Claude Skills for Gemini CLI Source: https://github.com/agricidaniel/claude-skills/blob/main/INSTALLATION.md Clone the repository and run the setup script for Gemini CLI integration. ```bash git clone https://github.com/alirezarezvani/claude-skills.git cd claude-skills ./scripts/gemini-install.sh ``` -------------------------------- ### Run /ar:setup Command Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/skills/engineering/autoresearch-agent-setup.md Use this command to initiate the experiment setup process. It can be run interactively or with predefined arguments. ```bash /ar:setup ``` ```bash /ar:setup engineering api-speed src/api.py "pytest bench.py" p50_ms lower ``` ```bash /ar:setup --list ``` ```bash /ar:setup --list-evaluators ``` -------------------------------- ### Complete Prioritization Workflow Example Source: https://github.com/agricidaniel/claude-skills/blob/main/agents/product/cs-product-manager.md This example demonstrates the complete prioritization workflow, including running the RICE prioritizer script, redirecting output to a file, and then displaying the roadmap. It also includes a comment on reviewing the output for strategic planning. ```bash # Complete prioritization workflow python ../../product-team/product-manager-toolkit/scripts/rice_prioritizer.py q4-features.csv --capacity 20 > roadmap.txt cat roadmap.txt # Review quick wins, big bets, and generate quarterly plan ``` -------------------------------- ### Multi-Stage Dockerfile for Node.js/TypeScript Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/docker-development/SKILL.md Example of a multi-stage Dockerfile for Node.js/TypeScript applications. It includes stages for installing dependencies and building the application. ```dockerfile # Dependencies stage FROM node:20-alpine AS deps WORKDIR /app COPY package.json package-lock.json . RUN npm ci --production=false # Build stage FROM deps AS builder COPY . . RUN npm run build ``` -------------------------------- ### Create USER_GUIDE.md Structure Source: https://github.com/agricidaniel/claude-skills/blob/main/documentation/delivery/sprint-11-06-2025/plan.md Outlines the steps and structure for creating the USER_GUIDE.md file, including sections on introduction, quick start, command reference, workflows, advanced usage, troubleshooting, and FAQ. ```bash # Create USER_GUIDE.md # File: documentation/USER_GUIDE.md # Structure (600+ lines): # 1. Introduction # - What is cs- orchestrator framework? # - Key features and benefits # 2. Quick Start # - Installation/setup # - First command # - Basic workflow # 3. Command Reference # - List of all 10 commands # - Usage examples for each # - Expected outputs # 4. Workflows # - Single-agent workflows (5 examples) # - Sequential handoffs (campaign example) # - Parallel consultation (strategic decision example) # 5. Advanced Usage # - Custom routing # - Multi-agent coordination # - Token optimization tips # 6. Troubleshooting # - Common issues # - Quick fixes # 7. FAQ ``` -------------------------------- ### Quick Start Analysis Queries Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/skills/engineering-team/tech-stack-evaluator.md Examples of natural language prompts for comparing technologies, calculating TCO, and assessing migrations. ```text Compare React vs Vue for a SaaS dashboard. Priorities: developer productivity (40%), ecosystem (30%), performance (30%). ``` ```text Calculate 5-year TCO for Next.js on Vercel. Team: 8 developers. Hosting: $2500/month. Growth: 40%/year. ``` ```text Evaluate migrating from Angular.js to React. Codebase: 50,000 lines, 200 components. Team: 6 developers. ``` -------------------------------- ### Customer Interview Guide: Phase 3 - Solution Validation Source: https://github.com/agricidaniel/claude-skills/blob/main/product-team/product-manager-toolkit/references/frameworks.md Phase 3 of a customer interview guide, used to get reactions to a proposed solution or concept. This section should take approximately 10 minutes and involves presenting a prototype or idea. ```text "Based on what you've shared, I'd like to get your reaction to an idea..." [Show prototype/concept - keep it rough to invite honest feedback] - What's your initial reaction? - How does this compare to what you do today? - What would prevent you from using this? - How much would this be worth to you? - Who else would need to approve this purchase? ``` -------------------------------- ### Quick Start CLI Commands Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/senior-backend/SKILL.md Initial commands for scaffolding API routes, analyzing database schemas, and running load tests. ```bash # Generate API routes from OpenAPI spec python scripts/api_scaffolder.py openapi.yaml --framework express --output src/routes/ # Analyze database schema and generate migrations python scripts/database_migration_tool.py --connection postgres://localhost/mydb --analyze # Load test an API endpoint python scripts/api_load_tester.py https://api.example.com/users --concurrency 50 --duration 30 ``` -------------------------------- ### Upload TDD Guide Skill via API Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering-team/tdd-guide/README.md Example of using the Anthropic API to create a skill by uploading specific files. ```python # Upload skill via API import anthropic client = anthropic.Anthropic(api_key="your-api-key") # Create skill with files skill = client.skills.create( name="tdd-guide", files=["tdd-guide/SKILL.md", "tdd-guide/*.py"] ) ``` -------------------------------- ### Week 3-4: Prepare Launch Phase Example Source: https://github.com/agricidaniel/claude-skills/blob/main/orchestration/ORCHESTRATION.md Outlines the persona and skills for preparing the product launch, emphasizing marketing and content strategy. Deliverables include a live landing page, scheduled content, and email sequences. ```yaml Persona: growth-marketer Skills: - launch-strategy → Launch plan and timeline - copywriting → Landing page, emails - content-strategy → Blog posts, social content - seo-audit → Technical SEO for landing page Deliverables: - Landing page live - 5 blog posts scheduled - Email sequence configured - Launch day checklist ``` -------------------------------- ### AgentHub Initialization Output Examples Source: https://github.com/agricidaniel/claude-skills/blob/main/docs/skills/engineering/agenthub-init.md Example console output for sessions with and without evaluation commands. ```text AgentHub session initialized Session ID: 20260317-143022 Task: Optimize API response time below 100ms Agents: 3 Eval: pytest bench.py --json Metric: p50_ms (lower is better) Base branch: dev State: init Next step: Run /hub:spawn to launch 3 agents ``` ```text AgentHub session initialized Session ID: 20260317-151200 Task: Draft 3 competing taglines for product launch Agents: 3 Eval: LLM judge (no eval command) Base branch: dev State: init Next step: Run /hub:spawn to launch 3 agents ``` -------------------------------- ### MySQL Binary Log for PITR Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/sql-database-assistant/SKILL.md Example of using mysqlbinlog to start a binary log for Point-In-Time Recovery (PITR) from a specific datetime. ```bash mysqlbinlog --start-datetime="2025-01-01 00:00:00" binlog.000001 ``` -------------------------------- ### Setup Agent Directory Source: https://github.com/agricidaniel/claude-skills/blob/main/documentation/delivery/sprint-11-06-2025/plan.md Creates the directory structure for a new agent and outlines the required documentation template. ```bash # Create directory mkdir -p agents/orchestrator # Create agent file (use template structure) # File: agents/orchestrator/cs-orchestrator.md # Structure: # 1. YAML frontmatter (name, description, skills, domain, model, tools) # 2. Purpose section (core responsibilities) # 3. Skill Integration section # 4. Workflows section (3+ workflows: single-agent, sequential, parallel) # 5. Integration Examples section (code snippets) # 6. Success Metrics section # 7. Related Agents section # 8. References section ``` -------------------------------- ### Initialize Project Directory Structure Source: https://github.com/agricidaniel/claude-skills/blob/main/documentation/delivery/sprint-11-05-2025/plan.md Creates the necessary directory hierarchy for agents, commands, standards, and templates. Run this in the project root to establish the foundation. ```bash # 1. Create agent directories mkdir -p agents/marketing mkdir -p agents/c-level mkdir -p agents/product # 2. Create commands directory mkdir -p commands # 3. Create standards directories mkdir -p standards/communication mkdir -p standards/quality mkdir -p standards/git mkdir -p standards/documentation mkdir -p standards/security # 4. Create templates directory mkdir -p templates # 5. Verify structure tree agents commands standards templates # 6. Update .gitignore if needed # (ensure these directories are tracked, not ignored) ``` -------------------------------- ### Complete Technology Evaluation Workflow Example Source: https://github.com/agricidaniel/claude-skills/blob/main/agents/c-level/cs-cto-advisor.md An example command sequence demonstrating the steps for a complete technology evaluation workflow, including saving criteria, creating a comparison spreadsheet, and documenting the final decision. ```bash # Complete technology evaluation workflow cat ../../c-level-advisor/cto-advisor/references/technology_evaluation_framework.md > evaluation-criteria.txt # Create comparison spreadsheet using criteria # Document final decision in ADR format ``` -------------------------------- ### Initialize and Run FastMCP Server Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/mcp-server-builder/references/typescript-server-template.md This snippet demonstrates how to initialize a FastMCP server, define a tool, and start the server. Ensure FastMCP is installed. ```typescript import { FastMCP } from "fastmcp"; const server = new FastMCP({ name: "my-server" }); server.tool( "list_items", "List items from upstream service", async (input) => { return { content: [{ type: "text", text: JSON.stringify({ status: "todo", input }) }], }; } ); server.run(); ``` -------------------------------- ### Custom Evaluator Script Source: https://github.com/agricidaniel/claude-skills/blob/main/engineering/autoresearch-agent/SKILL.md Example of a custom Python evaluator script. It must print 'metric_name: value' to stdout. Do not modify this script after an experiment starts. ```python #!/usr/bin/env python3 # My custom evaluator — DO NOT MODIFY after experiment starts import subprocess result = subprocess.run(["my-benchmark", "--json"], capture_output=True, text=True) # Parse and output print(f"my_metric: {parse_score(result.stdout)}") ```