← ClaudeAtlas

ecosystem-authoritative-sourceslisted

Provides information about how to create, structure, install, and audit Agent Skills, Plugins, Antigravity Workflows, and Sub-agents. Trigger this when specifications, rules, or best practices for the ecosystem are required.
richfrem/agent-plugins-skills · ★ 3 · API & Backend · score 67
Install: claude install-skill richfrem/agent-plugins-skills
## Dependencies This skill requires **Python 3.8+** and standard library only. No external packages needed. **To install this skill's dependencies:** ```bash pip-compile ./requirements.in pip install -r ./requirements.txt ``` See `../../requirements.txt` for the dependency lockfile (currently empty — standard library only). --- # Ecosystem Authoritative Sources # Official Open Standard Recognition **Important:** This reference library draws heavy inspiration and structural standards directly from the Anthropic Claude Plugins official repositories. Please refer to: - **Foundational Specification**: `https://github.com/anthropics/claude-plugins-official/tree/main/plugins/plugin-dev` - **L4 Interaction & Execution Patterns**: Derived from `https://github.com/anthropics/claude-knowledgework-plugins` (specifically the Legal and Bio-Research plugins). - **Skill Creator 2.0 (Anthropic, March 2026)**: `https://github.com/anthropics/skills/tree/main/skills/skill-creator` - **Anthropic Official Claude Code docs**: `https://docs.anthropic.com/en/docs/claude-code/` ## Agentic OS / Agent Harness Pattern The Agentic OS is a synthesized runtime environment pattern built from Anthropic primitives: | Component | Anthropic Primitive | Official URL | |-----------|--------------------|--------------| | Project kernel | `CLAUDE.md` hierarchy (5 scopes) | https://docs.anthropic.com/en/docs/claude-code/memory | | Scheduled tasks | `/loop` command | https://docs.anthropic.com/en/docs/claude-c