ワンクリックで
ecosystem-manager
Agent ecosystem expert for creating, maintaining, and auditing agents and skills. Prevents ecosystem drift and overlap.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Agent ecosystem expert for creating, maintaining, and auditing agents and skills. Prevents ecosystem drift and overlap.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Single-task dispatcher for CLEAR Context OS scheduled maintenance. Runs from the daily scheduled task, reads schedule-config.json, determines which jobs are due today, runs them in sequence, appends to the diary, writes a consolidated morning digest, and surfaces any frequency-tuning suggestions. WHEN TO USE: - Invoked automatically each morning by the `bcos-{PROJECT}` scheduled task - User says "run today's maintenance now" (manual dispatch) - User says "run the [job-name] job" (runs one job on demand, skips others)
Strategic reflection skill. Step back from daily work to think about the bigger picture of your context architecture, identify gaps, and envision improvements.
Wiki zone manager for BCOS — the universal long-form and cross-cutting content destination per plugin-storage-contract.md Rule 2. Stores runbooks, SOPs, decision logs, how-tos, glossaries, post-mortems, FAQs, meeting notes, and plugin cross-cutting context (charters, transcripts, research, customer-call notes). Two ingest paths: Path B (local files, pasted text, inbox promotion — runbooks/scripts/SOPs/notes) and Path A (external URLs / GitHub / YouTube). Schema-validated frontmatter, banner citations, builds-on graph for references, two-tier refresh, supersedes chains. Schema-driven, CLEAR-governed, derived-artifact. Invoke with /wiki.
The single entry point for getting anything new into your context architecture. Takes any input (documents, URLs, YouTube, meeting notes, pasted content) and triages it: dump to _inbox, park in _planned, or integrate into active docs. WHEN TO USE: - "Here's a document — integrate it into my context" - "Save this for later" / "Dump these meeting notes" - "I have an idea — park it somewhere" - "Read this article — not sure if it's relevant" - "Our competitor just announced X — update positioning" - Any time new information needs to enter the context architecture - Raw material should become a wiki explainer rather than a canonical data point
First-run onboarding skill. Gets a new user from zero to a working context system. Claude asks one direct question upfront to pick the right scaffolding, then works from what the user shares — no long assessment ceremony beyond that. Creates a checklist that tracks setup progress across sessions and self-removes when done. WHEN TO USE: - "I want to set up my business context" - "Here's my website / pitch deck / LinkedIn" - "Scan my repo and show me what context exists" - "What do I do next?" (after install) - "Help me get started" - First time adopting CLEAR Context OS in any project
Cross-zone retrieval and task-driven bundle resolution for BCOS. /context search ranks docs across every zone in one shared schema; /context bundle (P5) returns a curated, freshness-flagged, source-of-truth-aware context bundle for a declared task. Mechanical-first; LLM is opt-in via --semantic / --resolve-conflicts / --verify-coverage flags only. Invoke with /context.
| name | ecosystem-manager |
| description | Agent ecosystem expert for creating, maintaining, and auditing agents and skills. Prevents ecosystem drift and overlap. |
| category | ecosystem |
This skill IS:
This skill IS NOT:
Run discovery to see what exists:
# Find existing agents
bash .claude/agents/agent-discovery/find_agents.sh
# Find existing skills
bash .claude/skills/skill-discovery/find_skills.sh
Compare against .claude/quality/ecosystem/state.json for drift detection.
Before creating anything new:
Check for:
docs/_wiki/ exists, verify bcos-wiki is present,
_wiki/.schema.yml page-types are readable, and scheduled wiki jobs are wired
into schedule-dispatcherAfter significant work sessions, capture institutional knowledge:
Store in .claude/quality/ecosystem/lessons.json using the schema in lessons-schema.md.
When creating new components, ensure:
For Agents (AGENT.md):
For Skills (SKILL.md):
| Question | Agent | Skill |
|---|---|---|
| Heavy analysis work? | Yes | No |
| Loads into user context? | No | Yes |
| Methodology/guidelines? | No | Yes |
| Needs isolated context? | Yes | No |
| Orchestrates other agents? | No | Yes |
references/ subdirectoryAgent: Purpose (IS/IS NOT), Input, Output, Internal Workflow Skill: Purpose (IS/IS NOT), When to Use, Capabilities or Workflow
This is the MANDATORY audit step for AGENTING scenarios. Run it before committing.
python .claude/scripts/analyze_integration.py --uncommitted
This script finds:
For each flagged file, answer:
Add fix tasks to the plan and execute them before committing.
After any ecosystem change — this is not optional:
The per-change checklist above catches individual issues. This deeper audit catches systemic drift that accumulates across multiple changes. Run after major development sessions or as part of monthly architecture review.
For each skill, verify it references the skills, scripts, and files it SHOULD know about:
reference-index.json list ALL skills, hooks, scripts, and agents?state.json skill count match actual SKILL.md files on disk?docs/_wiki/ exists, does the ecosystem inventory acknowledge bcos-wiki,
schema-governed page-types, and the wiki scheduled maintenance jobs?When the repo has docs/_wiki/, include the wiki zone in ecosystem scans:
.claude/skills/bcos-wiki/SKILL.md exists and dispatches /wiki.python .claude/scripts/wiki_schema.py list to inspect page-types,
lint-checks, and auto-fixes from _wiki/.schema.yml or the framework fallback.schedule-config.template.json and the active schedule config for
wiki-stale-propagation, wiki-source-refresh, wiki-graveyard, and
wiki-coverage-audit.docs/_wiki/raw/ as authored context; raw files are managed
by bcos-wiki protocols.Run all 4 CI checks locally:
python .github/scripts/validate_frontmatter.py # YAML metadata on all managed markdown
python .github/scripts/validate_references.py # All registry paths resolve + state.json accuracy
python .claude/scripts/analyze_integration.py --ci # Ecosystem wiring (install.sh, settings.json coverage)
# JSON validation: python -m json.tool on each JSON file
Output: A findings table with severity (critical/medium/low) and fix recommendations. See the Integration Audit capability for how to present results.
.claude/quality/ecosystem/state.json.claude/quality/ecosystem/config.json.claude/quality/ecosystem/lessons.json.claude/quality/ecosystem/lessons-schema.md.claude/ECOSYSTEM-MAP.mdArchitecture docs: For component standards, see
docs/_bcos-framework/architecture/component-standards.md