amplifier-modulebuilder-skill — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited amplifier-modulebuilder-skill (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Claude Code skill that teaches the "bricks and studs" architecture for creating self-contained, regeneratable modules that extend AI agent capabilities.
This skill teaches how to build five types of amplifier-foundation modules:
Quick install:
/plugin install https://github.com/michaeljabbour/amplifier-modulebuilder-skillOpenAI Codex CLI (local):
# from the repo root
CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
mkdir -p "$CODEX_HOME/skills"
ln -s "$(pwd)/skills/amplifier-modulebuilder-skill" "$CODEX_HOME/skills/amplifier-modulebuilder-skill"
# restart Codex to pick up new skillsFor detailed installation instructions, troubleshooting, and alternative methods, see [INSTALLATION.md](INSTALLATION.md).
Once installed, Claude Code will automatically use this skill when you:
amplifier-modulebuilder-skill/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── skills/
│ └── amplifier-modulebuilder-skill/
│ ├── SKILL.md # Main skill definition (47KB)
│ └── references/ # Deep-dive documentation
│ ├── API_PATTERNS.md # Common implementation patterns
│ ├── CONTRIBUTING.md # Community guidelines
│ ├── DEVELOPMENT_WORKFLOW.md # Step-by-step process
│ ├── EXAMPLES.md # 4 complete working examples
│ ├── MODULAR_BUILDER.md # AI-assisted development
│ ├── MODULE_TYPES.md # Deep dive on all 5 types
│ ├── REPOSITORY_RULES.md # Awareness constraints
│ ├── TESTING_GUIDE.md # Comprehensive testing
│ └── README.md # References navigation
├── LICENSE # MIT License
├── INSTALLATION.md # Installation guide
└── README.md # This fileLike LEGO bricks:
mount() function, get_schema(), README.mdModules are:
The Golden Rule: "Only reference declared dependencies"
✅ Can reference: Python stdlib, declared dependencies, coordinator ❌ Cannot reference: Other modules directly, undeclared dependencies
/\
/ \
/ E2E \ 10%
/------\
/ \
/ Integrn \ 30%
/------------\
/ \
/ Unit Tests \ 60%
------------------Target: 85% coverage overall, 100% for critical paths.
async def mount(coordinator, config):
async def uppercase(text: str) -> str:
"""Convert text to uppercase."""
return text.upper()
return {"uppercase": uppercase}
def get_schema() -> dict:
return {
"uppercase": {
"description": "Convert text to uppercase",
"parameters": {
"type": "object",
"properties": {
"text": {"type": "string", "description": "Text to convert"}
},
"required": ["text"]
}
}
}See references/EXAMPLES.md for 4 complete examples.
| Type | Purpose | Entry Point | Example |
|---|---|---|---|
| Orchestrator | Control execution loop | amplifier.orchestrators | loop-streaming |
| Provider | Connect to AI models | amplifier.providers | anthropic |
| Tool | Extend capabilities | amplifier.tools | filesystem |
| Context | Manage state | amplifier.contexts | memory |
| Hook | Observe events | amplifier.hooks | logging |
All in skills/amplifier-modulebuilder-skill/references/:
Learning Path: Build modules with this skill → Compose them into apps with amplifier-cli-skill → See them in action in amplifier-simplecli
This skill is part of the broader Amplifier ecosystem:
mkdir amplifier-module-{type}-{name}
cd amplifier-module-{type}-{name}
# Follow SKILL.md section 5 for structureexport AMPLIFIER_MODULE_{TYPE}_{NAME}=$(pwd)
uv run pytest tests/ --covgit init && git add . && git commit -m "feat: initial module"
gh repo create amplifier-module-{type}-{name} --public
git push -u origin main
git tag v0.1.0 && git push origin v0.1.0---
tools:
- git+https://github.com/you/[email protected]
---See CONTRIBUTING.md for guidelines on contributing to this skill or the module ecosystem.
MIT License - see LICENSE file for details.
1.0.0 - Plugin-enabled skill with comprehensive "bricks and studs" module architecture documentation.
Start building: Open SKILL.md and begin your journey! 🚀
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.