Complete implementation of OurDigital skills with dual-platform support (Claude Desktop + Claude Code) following standardized structure. Skills created: - 01-ourdigital-brand-guide: Brand reference & style guidelines - 02-ourdigital-blog: Korean blog drafts (blog.ourdigital.org) - 03-ourdigital-journal: English essays (journal.ourdigital.org) - 04-ourdigital-research: Research prompts & workflows - 05-ourdigital-document: Notion-to-presentation pipeline - 06-ourdigital-designer: Visual/image prompt generation - 07-ourdigital-ad-manager: Ad copywriting & keyword research - 08-ourdigital-trainer: Training materials & workshop planning - 09-ourdigital-backoffice: Quotes, proposals, cost analysis - 10-ourdigital-skill-creator: Meta skill for creating new skills Features: - YAML frontmatter with "ourdigital" or "our" prefix triggers - Standardized directory structure (code/, desktop/, shared/, docs/) - Shared environment setup (_ourdigital-shared/) - Comprehensive reference documentation - Cross-skill integration support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.8 KiB
1.8 KiB
name, description
| name | description |
|---|---|
| setup-agents | Initialize multi-agent collaboration framework for the current project |
Setup Multi-Agent Collaboration
You are initializing a multi-agent collaboration framework for this project.
Your Task
Guide the user through setting up a complete multi-agent framework by:
-
Assess the project:
- Identify the project type (Python, Node.js, monorepo, etc.)
- Determine the source code structure
- Check for existing configuration files
-
Gather requirements using AskUserQuestion:
- Which agents will participate? (Claude, Gemini, Codex, custom)
- What are the main ownership domains for each agent?
- Do they want CI/CD integration? (GitHub Actions, GitLab CI)
- Do they want pre-commit hooks?
-
Create the framework files:
.agent-state/tasks.yaml- Task registry.agent-state/locks.yaml- Lock registrytools/check-ownership.py- Ownership verification scriptAGENTS.md- Shared collaboration rulesGUARDRAILS.md- Ownership and enforcement rulesCLAUDE.md- Lead agent directive- Agent-specific files (GEMINI.md, CODEX.md) if needed
-
Configure tooling:
- Update or create
.pre-commit-config.yamlif requested - Create
.github/workflows/ownership-check.ymlif GitHub Actions requested
- Update or create
-
Customize ownership matrix:
- Update
OWNERSHIP_MATRIXin check-ownership.py based on project structure - Configure shared and unrestricted files
- Update
Templates
Use templates from the skill directory:
${CLAUDE_PLUGIN_ROOT}/skills/multi-agent-guide/templates/
After Setup
Remind the user to:
- Set
SEO_AGENT_AUTHORenvironment variable - Install pre-commit hooks:
pre-commit install - Verify setup:
python tools/check-ownership.py --verify-setup
Output
Provide a summary of created files and next steps.