feat: Add installation tool, Claude.ai export, and skill standardization (#1)

## Summary

- Add portable installation tool (`install.sh`) for cross-machine setup
- Add Claude.ai export files with proper YAML frontmatter
- Add multi-agent-guide v2.0 with consolidated framework template
- Rename `00-claude-code-setting` → `00-our-settings-audit` (avoid reserved word)
- Add YAML frontmatter to 25+ SKILL.md files for Claude Desktop compatibility

## Commits Included

- `93f604a` feat: Add portable installation tool for cross-machine setup
- `9b84104` feat: Add Claude.ai export for portable skill installation
- `f7ab973` fix: Add YAML frontmatter to Claude.ai export files
- `3fed49a` feat(multi-agent-guide): Add v2.0 with consolidated framework
- `3be26ef` refactor: Rename settings-audit skill and add YAML frontmatter

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Andrew Yim
2026-02-03 16:48:06 +07:00
committed by GitHub
parent 0bc24d00b9
commit b6a478e1df
72 changed files with 4770 additions and 803 deletions

View File

@@ -1,7 +1,7 @@
---
name: multi-agent-guide
description: Use when user asks to "set up multi-agent collaboration", "initialize multi-agent project", "create agent guardrails", "set up team AI collaboration", "configure agent ownership rules", "create agent handoff protocols", mentions "multi-agent guide", "multi-agent setup", "agent coordination", "AI agent collaboration", or wants to configure a project for multiple AI agents (Claude, Gemini, Codex) working together with proper ownership rules, task management, and CI/CD integration.
version: 1.0.0
version: 2.0.0
allowed-tools: Read, Glob, Grep, Write, Edit, Bash, AskUserQuestion
---
@@ -9,6 +9,24 @@ allowed-tools: Read, Glob, Grep, Write, Edit, Bash, AskUserQuestion
This skill helps you set up a comprehensive multi-agent collaboration framework for complex software projects where multiple AI agents (Claude Code, Gemini, Codex, and Human) work together.
## What's New in v2.0
| Feature | Description |
|---------|-------------|
| **Consolidated Framework** | Single `MULTI_AGENT_FRAMEWORK.md` (~250 lines vs ~2,400 in separate files) |
| **Quick Setup Command** | `/multi-agent-setup` for rapid deployment |
| **Simplified Templates** | One unified template instead of 5 separate files |
| **Production-Tested** | Based on dintel-data-agent and our-seo-agent implementations |
## Quick Start
For rapid setup, use:
```
/multi-agent-setup
```
This creates the essential files in under 2 minutes.
## Overview
The multi-agent setup creates:
@@ -371,8 +389,9 @@ Supporting files in this skill:
| File | Purpose |
|------|---------|
| `templates/agents-md.md` | AGENTS.md template |
| `templates/guardrails-md.md` | GUARDRAILS.md template |
| `templates/multi-agent-framework.md` | **Consolidated framework (RECOMMENDED)** |
| `templates/agents-md.md` | AGENTS.md template (legacy) |
| `templates/guardrails-md.md` | GUARDRAILS.md template (legacy) |
| `templates/claude-md.md` | CLAUDE.md template |
| `templates/gemini-md.md` | GEMINI.md template |
| `templates/codex-md.md` | CODEX.md template |
@@ -383,6 +402,15 @@ Supporting files in this skill:
| `examples/minimal-setup/` | Minimal 2-agent setup example |
| `examples/full-setup/` | Full 3-agent setup example |
### Template Selection Guide
| Use Case | Template |
|----------|----------|
| New projects | `multi-agent-framework.md` (consolidated) |
| Existing projects with separate files | Keep existing AGENTS.md + GUARDRAILS.md |
| Quick setup | `/multi-agent-setup` command |
| Full customization | Individual templates (agents-md, guardrails-md, etc.) |
---
## Commands