This repository hosts public agent skills maintained by the ToyWorks Team.
Agent Skills are folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently. They work across any AI agent that supports the open Agent Skills standard.
| Skill | Description |
|---|---|
| t3-hardware-scoring | The MantaBase T3 Hardware Audit System utilizes Brand Blinding information filtering, a Triple-Auditor specialized scoring process, and a Peer Review mechanism to objectively classify items as Tool, Toy, or Trash based on design theory. |
Use npx skills to install skills directly:
# Install all skills
npx skills add toyworks/agent-skills
# Install specific skills
npx skills add toyworks/agent-skills --skill t3-hardware-scoring
# List available skills
npx skills add toyworks/agent-skills --listInstall via Claude Code's plugin system:
# Add the marketplace
/plugin marketplace add toyworks/agent-skills
# Install specific skill
/plugin install t3-hardware-scoring-skillClaude Code plugins are also supported in Factory's Droid.
Agent skills can also be installed by using the below commands from Playbooks or Context7:
# Playbooks
npx playbooks add skill toyworks/agent-skills
# Context7
npx ctx7 skills install /toyworks/agent-skillsUse the included script to add new skills:
node scripts/add-skill.js <skill-name> "<description>"Example:
node scripts/add-skill.js t3-hardware-scoring "The MantaBase T3 Hardware Audit System utilizes Brand Blinding information filtering, a Triple-Auditor specialized scoring process, and a Peer Review mechanism to objectively classify items as Tool, Toy, or Trash based on design theory."This will create the skill structure and automatically update this README and the marketplace.json.
| Script | Description |
|---|---|
node scripts/add-skill.js |
Add a new skill to the repository |
node scripts/sync-skills.js |
Sync README and marketplace.json with skills directory |
We welcome contributions to improve existing skills or add new skills. Please submit a pull request.
MIT