mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-08-28 04:24:58 +00:00
chore(sync): register agent-launcher domain in codex/gemini/vibe/hermes syncs + refresh mirror trees
Adds agent-launcher to the four sync scripts' domain lists and re-runs them: .codex + .gemini indexes now carry the 6 skills; .vibe + .hermes repo trees regenerated (also catches up skills merged since the last sync). The pre-existing .codex/skills/run symlink collision (autoresearch-agent vs agenthub, both named 'run') is left at its previous target. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012FwXG6TqCXKZQvF4iD69cv
This commit is contained in:
parent
9ceecb1e70
commit
42822bfeca
137 changed files with 1166 additions and 598 deletions
|
|
@ -3,8 +3,44 @@
|
|||
"name": "claude-code-skills",
|
||||
"description": "Production-ready skill packages for AI agents - Marketing, Engineering, Product, C-Level, PM, and RA/QM",
|
||||
"repository": "https://github.com/alirezarezvani/claude-skills",
|
||||
"total_skills": 347,
|
||||
"total_skills": 353,
|
||||
"skills": [
|
||||
{
|
||||
"name": "agent-launcher-orchestrator",
|
||||
"source": "../../agent-launcher/skills/agent-launcher-orchestrator",
|
||||
"category": "agent-development",
|
||||
"description": "Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account \u2014 \"build me an agent\", \"launch this as a managed agent\", \"run this on a schedule\", \"grade my agent against a rubric\", \"set up a nightly worker\". Reads the per-session goal (./my-agent/goal.json), routes deterministically to one of five phase sub-skills (interview \u2192 stage-launch \u2192 grade-iterate \u2192 run-without-you \u2192 wrap-up) via goal_router.py, and compiles the goal+phase into an execution shape (single-pass workflow / bounded grade\u2192iterate loop / recurring cron deployment loop) via loop_compiler.py. Forks context so heavy intake (build sheets, payloads, eval cases) stays out of the parent thread. All launches are emitted as BYOK curl the user runs with their own key; no tool makes API calls. Inspired by anthropics/launch-your-agent (Apache-2.0). Distinct from engineering/agent-harness (generic domain loop) and engineering/write-a-skill (authors Claude Code skills, not CMAs)."
|
||||
},
|
||||
{
|
||||
"name": "grade-iterate",
|
||||
"source": "../../agent-launcher/skills/grade-iterate",
|
||||
"category": "agent-development",
|
||||
"description": "Phase 3 of building a Claude Managed Agent \u2014 the bounded grade\u2192iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader), read each verdict, decide the next move (sharpen / re-run / promote to schedule), and once a version passes, run held-back eval cases in parallel. Use when the user says \"grade my agent\", \"make it pass the rubric\", \"iterate until it's good\", \"is it good enough\", or when the orchestrator routes phase=grade-iterate. outcome_builder.py builds the user.define_outcome payload (rubric required, max_iterations clamped 1..20 \u2014 never unbounded); verdict_reader.py reads the grader result and recommends the next move; eval_scaffold.py generates held-back cases + a parallel run plan (capped at the 25-thread CMA ceiling). Distinct from stage-launch (first launch) and run-without-you (scheduling)."
|
||||
},
|
||||
{
|
||||
"name": "interview",
|
||||
"source": "../../agent-launcher/skills/interview",
|
||||
"category": "agent-development",
|
||||
"description": "Phase 1 of building a Claude Managed Agent \u2014 interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table + v1/v2 deferrals + eval plan) WITHOUT needing their API key yet. Use when the user says \"help me scope an agent\", \"I have an idea for an agent\", \"what should this agent be\", or when the orchestrator routes phase=interview. Drives the six intake slots (job, trigger, inputs, actions, definition-of-done, recurrence) via AskUserQuestion, maps them to primitives with interview_planner.py, assembles build-sheet.json with build_sheet_builder.py, and validates limits with primitives_validator.py. Connectors are mockable in v0 (schema-true custom tools); real MCP servers become v1 deferrals. Distinct from stage-launch (which turns the sheet into payloads)."
|
||||
},
|
||||
{
|
||||
"name": "run-without-you",
|
||||
"source": "../../agent-launcher/skills/run-without-you",
|
||||
"category": "agent-development",
|
||||
"description": "Phase 4 of building a Claude Managed Agent \u2014 make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven curl trigger, or confirmed on-demand use, then finalize the versioned roadmap. Use when the user says \"run it every morning\", \"put it on a schedule\", \"nightly\", \"weekly\", \"automate this\", \"make it recurring\", or when the orchestrator routes phase=run-without-you. deployment_builder.py builds the POST /v1/deployments payload (initial_events must include user.message; optionally nests a user.define_outcome so each firing self-grades); cron_validator.py validates the 5-field cron + IANA timezone and prints the wall-clock DST note; next_directions_writer.py writes NEXT-DIRECTIONS.md. No tool makes API calls \u2014 the deployment is created via BYOK curl. Distinct from grade-iterate (the in-session loop) and wrap-up (closeout)."
|
||||
},
|
||||
{
|
||||
"name": "stage-launch",
|
||||
"source": "../../agent-launcher/skills/stage-launch",
|
||||
"category": "agent-development",
|
||||
"description": "Phase 2 of building a Claude Managed Agent \u2014 turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch (environment \u2192 agent \u2192 session \u2192 kickoff) using the founder's OWN Anthropic key. Use when the user says \"launch it\", \"deploy the agent\", \"create the agent now\", or when the orchestrator routes phase=stage-launch. payload_generator.py emits the four ordered payloads; launch_script_writer.py writes launch.sh that reads $ANTHROPIC_API_KEY at runtime and never embeds it; payload_validator.py runs a pre-launch check including an API-key-leak scan. No tool in this skill makes network calls \u2014 the user runs launch.sh themselves. Distinct from interview (planning) and grade-iterate (the outcome loop)."
|
||||
},
|
||||
{
|
||||
"name": "wrap-up",
|
||||
"source": "../../agent-launcher/skills/wrap-up",
|
||||
"category": "agent-development",
|
||||
"description": "Close out a launched Claude Managed Agent \u2014 recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2 upgrades. Use when the user says \"wrap up\", \"close this out\", \"what do I own now\", \"give me the summary\", \"recap the agent\", or when the orchestrator routes phase=wrap-up. primitives_inventory.py tables everything owned (agent, environment, session, memory, outcome, deployment); overview_page.py regenerates a self-contained ./my-agent/agent-overview.html; upgrade_suggester.py ranks the next moves from recorded deferrals plus standing hardening steps. Companion to run-without-you; the last stop before phase=done."
|
||||
},
|
||||
{
|
||||
"name": "business-growth-skills",
|
||||
"source": "../../business-growth/skills/business-growth-skills",
|
||||
|
|
@ -1175,18 +1211,18 @@
|
|||
"category": "engineering-advanced",
|
||||
"description": "Use when the user asks to design a RAG pipeline, choose a chunking strategy or embedding model, pick a vector database, or evaluate retrieval quality (precision@k, recall@k, NDCG). Examples: 'design a RAG system for our docs', 'what chunk size should I use for this corpus', 'evaluate my retriever against ground truth'. NOT for general LLM cost tuning (use llm-cost-optimizer) or agent loops over retrieval (use agenthub)."
|
||||
},
|
||||
{
|
||||
"name": "run",
|
||||
"source": "../../engineering/agenthub/skills/run",
|
||||
"category": "engineering-advanced",
|
||||
"description": "One-shot lifecycle command that chains init \u2192 baseline \u2192 spawn \u2192 eval \u2192 merge in a single invocation. Use when the user runs /hub:run or asks to execute a full AgentHub competition end-to-end."
|
||||
},
|
||||
{
|
||||
"name": "run",
|
||||
"source": "../../engineering/autoresearch-agent/skills/run",
|
||||
"category": "engineering-advanced",
|
||||
"description": "Run a single experiment iteration. Edit the target file, evaluate, keep or discard. Use when the user runs /ar:run or asks for one manual autoresearch iteration."
|
||||
},
|
||||
{
|
||||
"name": "run",
|
||||
"source": "../../engineering/agenthub/skills/run",
|
||||
"category": "engineering-advanced",
|
||||
"description": "One-shot lifecycle command that chains init \u2192 baseline \u2192 spawn \u2192 eval \u2192 merge in a single invocation. Use when the user runs /hub:run or asks to execute a full AgentHub competition end-to-end."
|
||||
},
|
||||
{
|
||||
"name": "runbook-generator",
|
||||
"source": "../../engineering/skills/runbook-generator",
|
||||
|
|
@ -2089,6 +2125,11 @@
|
|||
}
|
||||
],
|
||||
"categories": {
|
||||
"agent-development": {
|
||||
"count": 6,
|
||||
"source": "../../agent-launcher",
|
||||
"description": "Claude Managed Agent launcher (v2.12): session-goal orchestrator (context: fork) + interview + stage-launch (BYOK curl) + grade-iterate (bounded outcome loop) + run-without-you (cron deployment loop) + wrap-up. Re-implements anthropics/launch-your-agent (Apache-2.0)."
|
||||
},
|
||||
"business-growth": {
|
||||
"count": 5,
|
||||
"source": "../../business-growth",
|
||||
|
|
|
|||
1
.codex/skills/agent-launcher-orchestrator
Symbolic link
1
.codex/skills/agent-launcher-orchestrator
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/agent-launcher-orchestrator
|
||||
1
.codex/skills/grade-iterate
Symbolic link
1
.codex/skills/grade-iterate
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/grade-iterate
|
||||
1
.codex/skills/interview
Symbolic link
1
.codex/skills/interview
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/interview
|
||||
1
.codex/skills/run-without-you
Symbolic link
1
.codex/skills/run-without-you
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/run-without-you
|
||||
1
.codex/skills/stage-launch
Symbolic link
1
.codex/skills/stage-launch
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/stage-launch
|
||||
1
.codex/skills/wrap-up
Symbolic link
1
.codex/skills/wrap-up
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../agent-launcher/skills/wrap-up
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"version": "1.0.0",
|
||||
"name": "gemini-cli-skills",
|
||||
"total_skills": 414,
|
||||
"total_skills": 427,
|
||||
"skills": [
|
||||
{
|
||||
"name": "README",
|
||||
|
|
@ -173,6 +173,36 @@
|
|||
"category": "agent",
|
||||
"description": "Technical co-founder who's been through two startups and learned what actually matters. Makes architecture decisions, selects tech stacks, builds engineering culture, and prepares for technical due diligence \u2014 all while shipping fast with a small team. Use when an early-stage team needs pragmatic, ship-first technical leadership \u2014 e.g., picking a boring-but-fast stack for an MVP with two engineers, or prepping architecture answers for investor due diligence. (For company-scale CTO strategy, see cs-cto-advisor.)"
|
||||
},
|
||||
{
|
||||
"name": "agent-launcher-orchestrator",
|
||||
"category": "agent-launcher",
|
||||
"description": "Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account \u2014 \"build me an agent\", \"launch this as a managed agent\", \"run this on a schedule\", \"grade my agent against a rubric\", \"set up a nightly worker\". Reads the per-session goal (./my-agent/goal.json), routes deterministically to one of five phase sub-skills (interview \u2192 stage-launch \u2192 grade-iterate \u2192 run-without-you \u2192 wrap-up) via goal_router.py, and compiles the goal+phase into an execution shape (single-pass workflow / bounded grade\u2192iterate loop / recurring cron deployment loop) via loop_compiler.py. Forks context so heavy intake (build sheets, payloads, eval cases) stays out of the parent thread. All launches are emitted as BYOK curl the user runs with their own key; no tool makes API calls. Inspired by anthropics/launch-your-agent (Apache-2.0). Distinct from engineering/agent-harness (generic domain loop) and engineering/write-a-skill (authors Claude Code skills, not CMAs)."
|
||||
},
|
||||
{
|
||||
"name": "grade-iterate",
|
||||
"category": "agent-launcher",
|
||||
"description": "Phase 3 of building a Claude Managed Agent \u2014 the bounded grade\u2192iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader), read each verdict, decide the next move (sharpen / re-run / promote to schedule), and once a version passes, run held-back eval cases in parallel. Use when the user says \"grade my agent\", \"make it pass the rubric\", \"iterate until it's good\", \"is it good enough\", or when the orchestrator routes phase=grade-iterate. outcome_builder.py builds the user.define_outcome payload (rubric required, max_iterations clamped 1..20 \u2014 never unbounded); verdict_reader.py reads the grader result and recommends the next move; eval_scaffold.py generates held-back cases + a parallel run plan (capped at the 25-thread CMA ceiling). Distinct from stage-launch (first launch) and run-without-you (scheduling)."
|
||||
},
|
||||
{
|
||||
"name": "interview",
|
||||
"category": "agent-launcher",
|
||||
"description": "Phase 1 of building a Claude Managed Agent \u2014 interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table + v1/v2 deferrals + eval plan) WITHOUT needing their API key yet. Use when the user says \"help me scope an agent\", \"I have an idea for an agent\", \"what should this agent be\", or when the orchestrator routes phase=interview. Drives the six intake slots (job, trigger, inputs, actions, definition-of-done, recurrence) via AskUserQuestion, maps them to primitives with interview_planner.py, assembles build-sheet.json with build_sheet_builder.py, and validates limits with primitives_validator.py. Connectors are mockable in v0 (schema-true custom tools); real MCP servers become v1 deferrals. Distinct from stage-launch (which turns the sheet into payloads)."
|
||||
},
|
||||
{
|
||||
"name": "run-without-you",
|
||||
"category": "agent-launcher",
|
||||
"description": "Phase 4 of building a Claude Managed Agent \u2014 make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven curl trigger, or confirmed on-demand use, then finalize the versioned roadmap. Use when the user says \"run it every morning\", \"put it on a schedule\", \"nightly\", \"weekly\", \"automate this\", \"make it recurring\", or when the orchestrator routes phase=run-without-you. deployment_builder.py builds the POST /v1/deployments payload (initial_events must include user.message; optionally nests a user.define_outcome so each firing self-grades); cron_validator.py validates the 5-field cron + IANA timezone and prints the wall-clock DST note; next_directions_writer.py writes NEXT-DIRECTIONS.md. No tool makes API calls \u2014 the deployment is created via BYOK curl. Distinct from grade-iterate (the in-session loop) and wrap-up (closeout)."
|
||||
},
|
||||
{
|
||||
"name": "stage-launch",
|
||||
"category": "agent-launcher",
|
||||
"description": "Phase 2 of building a Claude Managed Agent \u2014 turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch (environment \u2192 agent \u2192 session \u2192 kickoff) using the founder's OWN Anthropic key. Use when the user says \"launch it\", \"deploy the agent\", \"create the agent now\", or when the orchestrator routes phase=stage-launch. payload_generator.py emits the four ordered payloads; launch_script_writer.py writes launch.sh that reads $ANTHROPIC_API_KEY at runtime and never embeds it; payload_validator.py runs a pre-launch check including an API-key-leak scan. No tool in this skill makes network calls \u2014 the user runs launch.sh themselves. Distinct from interview (planning) and grade-iterate (the outcome loop)."
|
||||
},
|
||||
{
|
||||
"name": "wrap-up",
|
||||
"category": "agent-launcher",
|
||||
"description": "Close out a launched Claude Managed Agent \u2014 recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2 upgrades. Use when the user says \"wrap up\", \"close this out\", \"what do I own now\", \"give me the summary\", \"recap the agent\", or when the orchestrator routes phase=wrap-up. primitives_inventory.py tables everything owned (agent, environment, session, memory, outcome, deployment); overview_page.py regenerates a self-contained ./my-agent/agent-overview.html; upgrade_suggester.py ranks the next moves from recorded deferrals plus standing hardening steps. Companion to run-without-you; the last stop before phase=done."
|
||||
},
|
||||
{
|
||||
"name": "business-growth-skills",
|
||||
"category": "business-growth",
|
||||
|
|
@ -793,6 +823,11 @@
|
|||
"category": "engineering",
|
||||
"description": "Build complete transactional email systems: React Email templates, provider integration (Resend, Postmark, SendGrid, AWS SES), preview server, i18n support, dark mode, spam optimization, analytics tracking. Use when adding transactional email to a new product, migrating between email providers, refactoring legacy email templates for accessibility, or adding internationalization to existing templates."
|
||||
},
|
||||
{
|
||||
"name": "embedded-iot-mentor",
|
||||
"category": "engineering",
|
||||
"description": "Mentor for embedded and IoT hardware projects. Helps select MCUs, dev boards, and toolchains, decides where sensor readings end up (phone, PC, dashboard, or alert), and gives time/cost estimates and a phased build plan from breadboard MVP to production PCB. Use when the user mentions embedded, IoT, microcontroller, ESP32, STM32, Arduino, Raspberry Pi Pico, firmware, PCB, KiCad, EasyEDA, PlatformIO, MQTT, Home Assistant, ESPHome, Grafana, an IoT dashboard, seeing sensor data on a phone, or asks for hardware tool recommendations, project planning, or cost/time estimates for an electronics project."
|
||||
},
|
||||
{
|
||||
"name": "engineering-skills",
|
||||
"category": "engineering",
|
||||
|
|
@ -1063,6 +1098,11 @@
|
|||
"category": "engineering-advanced",
|
||||
"description": "Converts books, documentation folders, and source collections (PDF, EPUB, DOCX, HTML, Markdown, RST, AsciiDoc, RTF, MOBI/AZW) into structured agent skills \u2014 extracting named frameworks, principles, techniques, and anti-patterns into a master SKILL.md plus on-demand chapter files, a glossary, a patterns file, and a decision cheatsheet. Use when the user wants to study a document with an agent, apply an author's frameworks while working, turn internal docs or standards into a reusable knowledge base, or package a compiled book skill as a claude-skills plugin."
|
||||
},
|
||||
{
|
||||
"name": "boost-asio-pro",
|
||||
"category": "engineering-advanced",
|
||||
"description": "Use when writing or reviewing asynchronous C++ networking code with Boost.Asio or standalone Asio \u2014 TCP/UDP servers and clients, SSL/TLS, timers, strands, io_context, co_spawn, awaitable, async_read/async_write, asio::spawn, yield_context, or pre-C++20 completion-handler callbacks."
|
||||
},
|
||||
{
|
||||
"name": "browser-automation",
|
||||
"category": "engineering-advanced",
|
||||
|
|
@ -1198,6 +1238,11 @@
|
|||
"category": "engineering-advanced",
|
||||
"description": "Show DAG state, agent progress, and branch status for an AgentHub session. Use when the user runs /hub:hub-status or asks how the AgentHub agents are doing."
|
||||
},
|
||||
{
|
||||
"name": "human-gate",
|
||||
"category": "engineering-advanced",
|
||||
"description": "Runs the human-verification lane of an agent loop, and proves review happened before work is called done. Builds a single-file HTML review page, collects batched feedback as a structured artifact instead of chat prose, and runs a gate that refuses to close while a BLOCKER is open, the reviewer is unnamed, or nobody has reviewed at all. Use when a plan, spec, RFC, report, landing page, migration, or any irreversible action needs human sign-off before shipping, or on requests such as 'get sign-off', 'have someone check this', 'hold until reviewed', 'needs approval first'. NOT for making AI text sound human (use content-humanizer or behuman). NOT for reviewing code diffs (use md-review or code-reviewer)."
|
||||
},
|
||||
{
|
||||
"name": "interview-system-designer",
|
||||
"category": "engineering-advanced",
|
||||
|
|
@ -1296,7 +1341,7 @@
|
|||
{
|
||||
"name": "sample-skill",
|
||||
"category": "engineering-advanced",
|
||||
"description": "Skill from engineering/skills/skill-tester/assets/sample-skill"
|
||||
"description": "Reference BASIC-tier skill used as a fixture by skill-tester. Counts words and characters and applies basic text transformations. Use when validating skill-tester itself or when you need a minimal, known-good skill layout to copy. Not a production skill."
|
||||
},
|
||||
{
|
||||
"name": "secrets-vault-manager",
|
||||
|
|
@ -1453,10 +1498,15 @@
|
|||
"category": "finance",
|
||||
"description": "SaaS financial health advisor. Use when a user shares revenue or customer numbers, or mentions ARR, MRR, churn, LTV, CAC, NRR, or asks how their SaaS business is doing."
|
||||
},
|
||||
{
|
||||
"name": "stock-analysis",
|
||||
"category": "finance",
|
||||
"description": "Produce a rigorous, sector-relative, multi-factor fundamental analysis of a publicly listed company \u2014 Indian (NSE/BSE) or US/global. Use when the user asks to analyse, research, evaluate, or value a stock, ticker, or listed company; asks whether a business is fundamentally strong, cheap, or expensive; compares companies or benchmarks one against its sector; or mentions OPM, ROCE, ROE, ROIC, P/E, EV/EBITDA, free cash flow, NIM, GNPA, CASA, promoter holding or pledging. Use it for accounting-quality and forensic questions \u2014 \"is the profit real\", \"why is profit rising but cash isn't\", auditor qualifications, related-party concerns \u2014 which route to the forensic-only mode, and for IPOs and not-yet-listed companies \u2014 \"should I apply to this IPO\", DRHP/RHP or S-1 questions, price band, grey market premium \u2014 which route to the IPO mode. Use it even when the request sounds casual (\"is Infosys any good?\"). Do not use it for personalised investment advice, portfolio allocation, or trading signals."
|
||||
},
|
||||
{
|
||||
"name": "design-system",
|
||||
"category": "markdown-html",
|
||||
"description": "Captures the user's brand identity once via a 10-question onboarding wizard (primary/accent HEX + heading + body Google Fonts + design style editorial/technical/minimal/playful + default output directory + syntax theme + TOC behavior + optional logo/company), validates body-text and link contrast against WCAG 2.2 AA, derives 12 CSS custom properties in HSL space, and stores the result for every markdown-html converter to consume. Use before any markdown-html conversion. Triggers on first-run onboarding (\"set up the brand\", \"configure markdown-html\", \"run onboarding\"), on explicit reset (\"reset the design system\", \"re-onboard\"), and is checked by every converter via config_loader.py before rendering. Refuses to save if body-text contrast fails AA 4.5:1 or the output dir isn't writable. Precedence: project (./.markdown-html/) > global (~/.config/markdown-html/) > built-in defaults; MARKDOWN_HTML_NO_CONFIG=1 bypasses."
|
||||
"description": "Captures the user's brand identity once via a 10-question onboarding wizard (primary/accent HEX + heading + body Google Fonts + design style editorial/technical/minimal/playful + default output directory + syntax theme + TOC behavior + optional logo/company), validates body-text and link contrast against WCAG 2.2 AA, derives 12 CSS custom properties in HSL space, and stores the result for every markdown-html converter to consume. Use before any markdown-html conversion. Triggers on first-run onboarding (\"set up the brand\", \"configure markdown-html\", \"run onboarding\"), on explicit reset (\"reset the design system\", \"re-onboard\"), and is checked by every converter via config_loader.py before rendering. Refuses to save if body-text contrast fails AA 4.5:1 or the output dir isn't writable. Precedence is project (./.markdown-html/) > global (~/.config/markdown-html/) > built-in defaults; MARKDOWN_HTML_NO_CONFIG=1 bypasses."
|
||||
},
|
||||
{
|
||||
"name": "markdown-html-orchestrator",
|
||||
|
|
@ -1476,7 +1526,7 @@
|
|||
{
|
||||
"name": "md-slides",
|
||||
"category": "markdown-html",
|
||||
"description": "Converts a markdown deck (slides separated by `"
|
||||
"description": "\"Converts a markdown deck (slides separated by `"
|
||||
},
|
||||
{
|
||||
"name": "ab-test-setup",
|
||||
|
|
@ -1508,6 +1558,11 @@
|
|||
"category": "marketing",
|
||||
"description": "When the user wants to apply, document, or enforce brand guidelines for any product or company. Also use when the user mentions 'brand guidelines,' 'brand colors,' 'typography,' 'logo usage,' 'brand voice,' 'visual identity,' 'tone of voice,' 'brand standards,' 'style guide,' 'brand consistency,' or 'company design standards.' Covers color systems, typography, logo rules, imagery guidelines, and tone matrix for any brand \u2014 including Anthropic's official identity."
|
||||
},
|
||||
{
|
||||
"name": "business-name-fit",
|
||||
"category": "marketing",
|
||||
"description": "Suggest, pick, or vet a business, startup, or product name that stays true to the founder's cultural origin while working professionally in the markets they want to sell into. Use when someone is naming a company, brand, or product and cares about how it lands across languages and regions \u2014 for example a name that sounds right at home but might read oddly to English speakers, or an authentic name they want to check before committing. Trigger this for any request about choosing a business name, checking if a name \"works\" abroad, spotting bad meanings in other languages, or making a name sound trustworthy in a specific market \u2014 even if the person doesn't say the word \"skill\"."
|
||||
},
|
||||
{
|
||||
"name": "campaign-analytics",
|
||||
"category": "marketing",
|
||||
|
|
@ -1858,6 +1913,11 @@
|
|||
"category": "productivity",
|
||||
"description": "Use when someone asks to roast an idea, pressure-test or stress-test an idea, validate a business idea, \"convene the panel\", get a brutal second opinion before building something, or says \"/roast\". Spins up a 5-angle panel (Critic, Champion, Analyst, Investigator, Customer) that attacks the idea from every angle, then a Judge returns one GO / RESHAPE / KILL verdict with the cheapest test to de-risk it."
|
||||
},
|
||||
{
|
||||
"name": "swedish-mentor",
|
||||
"category": "productivity",
|
||||
"description": "Mentor Swedish language learners by selecting YouTube video clips and podcast episodes by CEFR level and skill (listening, reading, writing, speaking), and building a simple learning path. Use when the user asks about a Swedish learning path, YouTube clips or podcasts for Swedish, SFI videos, level assessment for svenska, or requests for Peter SFI / L\u00e4tt Svenska med Oskar / Radio Sweden p\u00e5 l\u00e4tt svenska / Klartext-style recommendations."
|
||||
},
|
||||
{
|
||||
"name": "weekly-review",
|
||||
"category": "productivity",
|
||||
|
|
@ -2008,6 +2068,11 @@
|
|||
"category": "research",
|
||||
"description": "Run a disciplined, multi-source research investigation for a high-stakes question or decision \u2014 fan-out web search across many channels, parallel sub-agents, source triangulation (each claim backed by \u22653 independent sources), an adversarial review pass, and every source saved to its own file with verbatim quotes for reuse. Use when a low-quality answer is expensive: strategy work, comparing N products/methods/markets, validating a hypothesis with external data, or mapping how a field works. NOT for quick fact-checks (answer directly), structured 12-dimension competitor scoring (use competitive-teardown), or fast topic overviews where the decision risk is low (use the research router instead)."
|
||||
},
|
||||
{
|
||||
"name": "deepread",
|
||||
"category": "research",
|
||||
"description": "Use when the user asks to deeply read a book, article, PDF, or document set; extract claims and evidence; build a knowledge map; or learn through Feynman explanation and recall. Covers quick, deep, map, Feynman, and whole-book reading modes."
|
||||
},
|
||||
{
|
||||
"name": "dossier",
|
||||
"category": "research",
|
||||
|
|
@ -2041,7 +2106,7 @@
|
|||
{
|
||||
"name": "research-bundle",
|
||||
"category": "research",
|
||||
"description": "Default entry point for any research request \u2014 a hybrid router that classifies the question deterministically and either delegates to a specialist research skill (pulse for trends/sentiment, grants for NIH funding, litreview for academic literature, syllabus for course reading, patent for prior-art + IP landscape, dossier for entity research) or runs its own plan-decompose-multi-source-search-synthesize-cite fallback workflow when no specialist matches. Always surfaces the routing decision so users can override. Use when the user makes any research request that doesn't obviously match a more-specific specialist skill (e.g., \"research [topic]\", \"look into [topic]\", \"what do we know about [topic]\", \"investigate [topic]\", \"find me information on [topic]\", \"do some research on [topic]\", \"I need to understand [topic]\"). Output is a markdown briefing (default) or .docx document (on request) with full citations and an audit log."
|
||||
"description": "Default entry point for any research request \u2014 a hybrid router that classifies the question deterministically and either delegates to a specialist research skill (pulse for trends/sentiment, grants for NIH funding, litreview for academic literature, syllabus for course reading, patent for prior-art + IP landscape, dossier for entity research, deepread for evidence-first reading of supplied documents) or runs its own plan-decompose-multi-source-search-synthesize-cite fallback workflow when no specialist matches. Always surfaces the routing decision so users can override. Use when the user makes any research request that doesn't obviously match a more-specific specialist skill (e.g., \"research [topic]\", \"look into [topic]\", \"what do we know about [topic]\", \"investigate [topic]\", \"find me information on [topic]\", \"do some research on [topic]\", \"I need to understand [topic]\"). Output is a markdown briefing (default) or .docx document (on request) with full citations and an audit log."
|
||||
},
|
||||
{
|
||||
"name": "syllabus",
|
||||
|
|
@ -2079,6 +2144,10 @@
|
|||
"count": 34,
|
||||
"description": "Agent resources"
|
||||
},
|
||||
"agent-launcher": {
|
||||
"count": 6,
|
||||
"description": "Agent-launcher resources"
|
||||
},
|
||||
"business-growth": {
|
||||
"count": 5,
|
||||
"description": "Business-growth resources"
|
||||
|
|
@ -2104,15 +2173,15 @@
|
|||
"description": "Compliance-os resources"
|
||||
},
|
||||
"engineering": {
|
||||
"count": 52,
|
||||
"count": 53,
|
||||
"description": "Engineering resources"
|
||||
},
|
||||
"engineering-advanced": {
|
||||
"count": 86,
|
||||
"count": 88,
|
||||
"description": "Engineering-advanced resources"
|
||||
},
|
||||
"finance": {
|
||||
"count": 4,
|
||||
"count": 5,
|
||||
"description": "Finance resources"
|
||||
},
|
||||
"markdown-html": {
|
||||
|
|
@ -2120,7 +2189,7 @@
|
|||
"description": "Markdown-html resources"
|
||||
},
|
||||
"marketing": {
|
||||
"count": 48,
|
||||
"count": 49,
|
||||
"description": "Marketing resources"
|
||||
},
|
||||
"marketing-top-level": {
|
||||
|
|
@ -2132,7 +2201,7 @@
|
|||
"description": "Product resources"
|
||||
},
|
||||
"productivity": {
|
||||
"count": 11,
|
||||
"count": 12,
|
||||
"description": "Productivity resources"
|
||||
},
|
||||
"project-management": {
|
||||
|
|
@ -2144,7 +2213,7 @@
|
|||
"description": "Ra-qm resources"
|
||||
},
|
||||
"research": {
|
||||
"count": 9,
|
||||
"count": 10,
|
||||
"description": "Research resources"
|
||||
},
|
||||
"research-ops": {
|
||||
|
|
|
|||
1
.gemini/skills/agent-launcher-orchestrator/SKILL.md
Symbolic link
1
.gemini/skills/agent-launcher-orchestrator/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/agent-launcher-orchestrator/SKILL.md
|
||||
1
.gemini/skills/boost-asio-pro/SKILL.md
Symbolic link
1
.gemini/skills/boost-asio-pro/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../engineering/boost-asio-pro/SKILL.md
|
||||
1
.gemini/skills/business-name-fit/SKILL.md
Symbolic link
1
.gemini/skills/business-name-fit/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../marketing-skill/skills/business-name-fit/SKILL.md
|
||||
1
.gemini/skills/deepread/SKILL.md
Symbolic link
1
.gemini/skills/deepread/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../research/deepread/SKILL.md
|
||||
1
.gemini/skills/embedded-iot-mentor/SKILL.md
Symbolic link
1
.gemini/skills/embedded-iot-mentor/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../engineering-team/skills/embedded-iot-mentor/SKILL.md
|
||||
1
.gemini/skills/grade-iterate/SKILL.md
Symbolic link
1
.gemini/skills/grade-iterate/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/grade-iterate/SKILL.md
|
||||
1
.gemini/skills/human-gate/SKILL.md
Symbolic link
1
.gemini/skills/human-gate/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../engineering/human-gate/skills/human-gate/SKILL.md
|
||||
1
.gemini/skills/interview/SKILL.md
Symbolic link
1
.gemini/skills/interview/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/interview/SKILL.md
|
||||
1
.gemini/skills/run-without-you/SKILL.md
Symbolic link
1
.gemini/skills/run-without-you/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/run-without-you/SKILL.md
|
||||
1
.gemini/skills/stage-launch/SKILL.md
Symbolic link
1
.gemini/skills/stage-launch/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/stage-launch/SKILL.md
|
||||
1
.gemini/skills/stock-analysis/SKILL.md
Symbolic link
1
.gemini/skills/stock-analysis/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../finance/skills/stock-analysis/SKILL.md
|
||||
1
.gemini/skills/swedish-mentor/SKILL.md
Symbolic link
1
.gemini/skills/swedish-mentor/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../productivity/swedish-mentor/SKILL.md
|
||||
1
.gemini/skills/wrap-up/SKILL.md
Symbolic link
1
.gemini/skills/wrap-up/SKILL.md
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../agent-launcher/skills/wrap-up/SKILL.md
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/agent-launcher-orchestrator
|
||||
1
.hermes/skills/claude-skills/agent-launcher/grade-iterate
Symbolic link
1
.hermes/skills/claude-skills/agent-launcher/grade-iterate
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/grade-iterate
|
||||
1
.hermes/skills/claude-skills/agent-launcher/interview
Symbolic link
1
.hermes/skills/claude-skills/agent-launcher/interview
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/interview
|
||||
1
.hermes/skills/claude-skills/agent-launcher/run-without-you
Symbolic link
1
.hermes/skills/claude-skills/agent-launcher/run-without-you
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/run-without-you
|
||||
1
.hermes/skills/claude-skills/agent-launcher/stage-launch
Symbolic link
1
.hermes/skills/claude-skills/agent-launcher/stage-launch
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/stage-launch
|
||||
1
.hermes/skills/claude-skills/agent-launcher/wrap-up
Symbolic link
1
.hermes/skills/claude-skills/agent-launcher/wrap-up
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/wrap-up
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/business-operations-skills
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/capacity-planner
|
||||
1
.hermes/skills/claude-skills/business-operations/internal-comms
Symbolic link
1
.hermes/skills/claude-skills/business-operations/internal-comms
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/internal-comms
|
||||
1
.hermes/skills/claude-skills/business-operations/knowledge-ops
Symbolic link
1
.hermes/skills/claude-skills/business-operations/knowledge-ops
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/knowledge-ops
|
||||
1
.hermes/skills/claude-skills/business-operations/process-mapper
Symbolic link
1
.hermes/skills/claude-skills/business-operations/process-mapper
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/process-mapper
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/procurement-optimizer
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../business-operations/skills/vendor-management
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../c-level-advisor/skills/arquiteto-de-empresa
|
||||
1
.hermes/skills/claude-skills/commercial/channel-economics
Symbolic link
1
.hermes/skills/claude-skills/commercial/channel-economics
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/channel-economics
|
||||
1
.hermes/skills/claude-skills/commercial/commercial-forecaster
Symbolic link
1
.hermes/skills/claude-skills/commercial/commercial-forecaster
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/commercial-forecaster
|
||||
1
.hermes/skills/claude-skills/commercial/commercial-policy
Symbolic link
1
.hermes/skills/claude-skills/commercial/commercial-policy
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/commercial-policy
|
||||
1
.hermes/skills/claude-skills/commercial/commercial-skills
Symbolic link
1
.hermes/skills/claude-skills/commercial/commercial-skills
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/commercial-skills
|
||||
1
.hermes/skills/claude-skills/commercial/deal-desk
Symbolic link
1
.hermes/skills/claude-skills/commercial/deal-desk
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/deal-desk
|
||||
1
.hermes/skills/claude-skills/commercial/partnerships-architect
Symbolic link
1
.hermes/skills/claude-skills/commercial/partnerships-architect
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/partnerships-architect
|
||||
1
.hermes/skills/claude-skills/commercial/pricing-strategist
Symbolic link
1
.hermes/skills/claude-skills/commercial/pricing-strategist
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/pricing-strategist
|
||||
1
.hermes/skills/claude-skills/commercial/rfp-responder
Symbolic link
1
.hermes/skills/claude-skills/commercial/rfp-responder
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../commercial/skills/rfp-responder
|
||||
1
.hermes/skills/claude-skills/compliance-os/ai-act-readiness
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/ai-act-readiness
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/ai-act-readiness
|
||||
1
.hermes/skills/claude-skills/compliance-os/aims-audit
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/aims-audit
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/aims-audit
|
||||
1
.hermes/skills/claude-skills/compliance-os/compliance-os
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/compliance-os
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/compliance-os
|
||||
1
.hermes/skills/claude-skills/compliance-os/compliance-readiness
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/compliance-readiness
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/compliance-readiness
|
||||
1
.hermes/skills/claude-skills/compliance-os/fda-qsr-audit-prep
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/fda-qsr-audit-prep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/fda-qsr-audit-prep
|
||||
1
.hermes/skills/claude-skills/compliance-os/gdpr-audit-prep
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/gdpr-audit-prep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/gdpr-audit-prep
|
||||
1
.hermes/skills/claude-skills/compliance-os/iso13485-audit-prep
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/iso13485-audit-prep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/iso13485-audit-prep
|
||||
1
.hermes/skills/claude-skills/compliance-os/iso27001-audit-prep
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/iso27001-audit-prep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/iso27001-audit-prep
|
||||
1
.hermes/skills/claude-skills/compliance-os/soc2-audit-prep
Symbolic link
1
.hermes/skills/claude-skills/compliance-os/soc2-audit-prep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../compliance-os/skills/soc2-audit-prep
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering-team/skills/embedded-iot-mentor
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering-team/skills/named-persona-adversarial-review
|
||||
1
.hermes/skills/claude-skills/engineering/agent-harness
Symbolic link
1
.hermes/skills/claude-skills/engineering/agent-harness
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/agent-harness/skills/agent-harness
|
||||
1
.hermes/skills/claude-skills/engineering/boost-asio-pro
Symbolic link
1
.hermes/skills/claude-skills/engineering/boost-asio-pro
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/boost-asio-pro
|
||||
1
.hermes/skills/claude-skills/engineering/claude-coach
Symbolic link
1
.hermes/skills/claude-skills/engineering/claude-coach
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/claude-coach/skills/claude-coach
|
||||
1
.hermes/skills/claude-skills/engineering/collab-proof
Symbolic link
1
.hermes/skills/claude-skills/engineering/collab-proof
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/collab-proof/skills/collab-proof
|
||||
1
.hermes/skills/claude-skills/engineering/human-gate
Symbolic link
1
.hermes/skills/claude-skills/engineering/human-gate
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/human-gate/skills/human-gate
|
||||
1
.hermes/skills/claude-skills/engineering/memory-engineering
Symbolic link
1
.hermes/skills/claude-skills/engineering/memory-engineering
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/memory-engineering/skills/memory-engineering
|
||||
1
.hermes/skills/claude-skills/engineering/minimalist
Symbolic link
1
.hermes/skills/claude-skills/engineering/minimalist
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/minimalist
|
||||
1
.hermes/skills/claude-skills/engineering/skillopt-sleep
Symbolic link
1
.hermes/skills/claude-skills/engineering/skillopt-sleep
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/skillopt-sleep/skills/skillopt-sleep
|
||||
1
.hermes/skills/claude-skills/engineering/strict-api
Symbolic link
1
.hermes/skills/claude-skills/engineering/strict-api
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/strict-api
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/universal-scraping-architect/skills/universal-scraping-architect
|
||||
1
.hermes/skills/claude-skills/engineering/workflow-builder
Symbolic link
1
.hermes/skills/claude-skills/engineering/workflow-builder
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/workflow-builder/skills/workflow-builder
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../engineering/zero-hallucination-coder/skills/zero-hallucination-coder
|
||||
1
.hermes/skills/claude-skills/finance/stock-analysis
Symbolic link
1
.hermes/skills/claude-skills/finance/stock-analysis
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../finance/skills/stock-analysis
|
||||
1
.hermes/skills/claude-skills/markdown-html/design-system
Symbolic link
1
.hermes/skills/claude-skills/markdown-html/design-system
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../markdown-html/skills/design-system
|
||||
|
|
@ -0,0 +1 @@
|
|||
../../../../markdown-html/skills/markdown-html-orchestrator
|
||||
1
.hermes/skills/claude-skills/markdown-html/md-document
Symbolic link
1
.hermes/skills/claude-skills/markdown-html/md-document
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../markdown-html/skills/md-document
|
||||
1
.hermes/skills/claude-skills/markdown-html/md-review
Symbolic link
1
.hermes/skills/claude-skills/markdown-html/md-review
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../markdown-html/skills/md-review
|
||||
1
.hermes/skills/claude-skills/markdown-html/md-slides
Symbolic link
1
.hermes/skills/claude-skills/markdown-html/md-slides
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../markdown-html/skills/md-slides
|
||||
1
.hermes/skills/claude-skills/marketing-skill/business-name-fit
Symbolic link
1
.hermes/skills/claude-skills/marketing-skill/business-name-fit
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../marketing-skill/skills/business-name-fit
|
||||
1
.hermes/skills/claude-skills/marketing-skill/local-seo-manager
Symbolic link
1
.hermes/skills/claude-skills/marketing-skill/local-seo-manager
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../marketing-skill/skills/local-seo-manager
|
||||
1
.hermes/skills/claude-skills/marketing-skill/webinar-marketing
Symbolic link
1
.hermes/skills/claude-skills/marketing-skill/webinar-marketing
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../marketing-skill/skills/webinar-marketing
|
||||
1
.hermes/skills/claude-skills/marketing-skill/youtube-full
Symbolic link
1
.hermes/skills/claude-skills/marketing-skill/youtube-full
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../marketing-skill/skills/youtube-full
|
||||
1
.hermes/skills/claude-skills/productivity/andreessen
Symbolic link
1
.hermes/skills/claude-skills/productivity/andreessen
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/andreessen/skills/andreessen
|
||||
1
.hermes/skills/claude-skills/productivity/deep-work
Symbolic link
1
.hermes/skills/claude-skills/productivity/deep-work
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/deep-work/skills/deep-work
|
||||
1
.hermes/skills/claude-skills/productivity/fable-goal
Symbolic link
1
.hermes/skills/claude-skills/productivity/fable-goal
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/fable-goal/skills/fable-goal
|
||||
1
.hermes/skills/claude-skills/productivity/handoff
Symbolic link
1
.hermes/skills/claude-skills/productivity/handoff
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/handoff/skills/handoff
|
||||
1
.hermes/skills/claude-skills/productivity/meetings
Symbolic link
1
.hermes/skills/claude-skills/productivity/meetings
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/meetings/skills/meetings
|
||||
1
.hermes/skills/claude-skills/productivity/roast
Symbolic link
1
.hermes/skills/claude-skills/productivity/roast
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/roast/skills/roast
|
||||
1
.hermes/skills/claude-skills/productivity/swedish-mentor
Symbolic link
1
.hermes/skills/claude-skills/productivity/swedish-mentor
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/swedish-mentor
|
||||
1
.hermes/skills/claude-skills/productivity/weekly-review
Symbolic link
1
.hermes/skills/claude-skills/productivity/weekly-review
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../productivity/weekly-review/skills/weekly-review
|
||||
1
.hermes/skills/claude-skills/ra-qm-team/agent-decision-receipts
Symbolic link
1
.hermes/skills/claude-skills/ra-qm-team/agent-decision-receipts
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../ra-qm-team/skills/agent-decision-receipts
|
||||
1
.hermes/skills/claude-skills/research-ops/clinical-research
Symbolic link
1
.hermes/skills/claude-skills/research-ops/clinical-research
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research-ops/skills/clinical-research
|
||||
1
.hermes/skills/claude-skills/research-ops/market-research
Symbolic link
1
.hermes/skills/claude-skills/research-ops/market-research
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research-ops/skills/market-research
|
||||
1
.hermes/skills/claude-skills/research-ops/product-research
Symbolic link
1
.hermes/skills/claude-skills/research-ops/product-research
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research-ops/skills/product-research
|
||||
1
.hermes/skills/claude-skills/research-ops/research-finance
Symbolic link
1
.hermes/skills/claude-skills/research-ops/research-finance
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research-ops/skills/research-finance
|
||||
1
.hermes/skills/claude-skills/research-ops/research-ops-skills
Symbolic link
1
.hermes/skills/claude-skills/research-ops/research-ops-skills
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research-ops/skills/research-ops-skills
|
||||
1
.hermes/skills/claude-skills/research/deep-research
Symbolic link
1
.hermes/skills/claude-skills/research/deep-research
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research/deep-research/skills/deep-research
|
||||
1
.hermes/skills/claude-skills/research/deepread
Symbolic link
1
.hermes/skills/claude-skills/research/deepread
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../research/deepread
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/agent-launcher-orchestrator
|
||||
1
.vibe/skills/claude-skills/agent-launcher/grade-iterate
Symbolic link
1
.vibe/skills/claude-skills/agent-launcher/grade-iterate
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/grade-iterate
|
||||
1
.vibe/skills/claude-skills/agent-launcher/interview
Symbolic link
1
.vibe/skills/claude-skills/agent-launcher/interview
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/interview
|
||||
1
.vibe/skills/claude-skills/agent-launcher/run-without-you
Symbolic link
1
.vibe/skills/claude-skills/agent-launcher/run-without-you
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/run-without-you
|
||||
1
.vibe/skills/claude-skills/agent-launcher/stage-launch
Symbolic link
1
.vibe/skills/claude-skills/agent-launcher/stage-launch
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/stage-launch
|
||||
1
.vibe/skills/claude-skills/agent-launcher/wrap-up
Symbolic link
1
.vibe/skills/claude-skills/agent-launcher/wrap-up
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../agent-launcher/skills/wrap-up
|
||||
1
.vibe/skills/claude-skills/c-level-advisor/arquiteto-de-empresa
Symbolic link
1
.vibe/skills/claude-skills/c-level-advisor/arquiteto-de-empresa
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../../c-level-advisor/skills/arquiteto-de-empresa
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue