with one click
anysystem-design
LLM Agent Skill for AnySystem Design React component library
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
LLM Agent Skill for AnySystem Design React component library
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Check and configure feature flag infrastructure (OpenFeature + providers)
Check and configure UX testing infrastructure (Playwright, accessibility, visual regression)
Generate comprehensive technical stack documentation from codebase analysis
Systematic debugging workflow with parallel agent exploration, root cause analysis, and fix verification. Adapted from feature-dev methodology for bug investigation.
Command: docs-plugin
Imported skill evaluation from anthropic
| id | SKILL |
| aliases | [] |
| tags | [] |
| description | LLM Agent Skill for AnySystem Design React component library |
| name | anysystem-design |
A comprehensive LLM agent skill for the AnySystem Design React component library. This skill enables AI assistants to help developers use the component library effectively.
AnySystem Design is a React component library with 22 components covering forms, layouts, navigation, and data display. This skill provides structured knowledge and examples for LLM agents to assist developers.
npx skills add freedomw1987/anysystem-design-skill
# or
bunx skills add freedomw1987/anysystem-design-skill
Then configure in your AI assistant:
{
"skills": {
"anysystem-design": {
"path": "node_modules/@anysystem-design-skill"
}
}
}
Add as a submodule to your project:
git submodule add git@github.com:freedomw1987/anysystem-design-skill.git agent-skill
Update the submodule to latest version:
git submodule update --remote agent-skill
Clone this repository directly:
git clone git@github.com:freedomw1987/anysystem-design-skill.git
For Claude Code CLI, copy to your project's .claude/skills/ directory:
cp -r anysystem-design-skill/* .claude/skills/
This skill package includes:
.claude/skills/:mkdir -p .claude/skills
cp agent-skill/skill-definition.json .claude/skills/anysystem-design.json
How do I create a form with validation using AnySystem Design?
{
"github.copilot.advanced": {
"customSkills": ["node_modules/@anysystem/design-agent-skill"]
}
}
skill-definition.json as knowledgegpt-instructions.mdfrom langchain.tools import Tool
anysystem_skill = Tool(
name="anysystem-design",
description="Help with AnySystem Design React components",
func=load_skill("path/to/agent-skill")
)
The skill can handle queries like:
The agent will provide:
The agent will provide:
agent-skill/
├── README.md # This file
├── skill-definition.json # Structured component data
├── quick-reference.md # Quick lookup guide
├── api-reference.md # Complete API docs
├── troubleshooting.md # Common issues
├── examples/
│ ├── form-validation.md
│ ├── sidebar-layout.md
│ ├── data-table.md
│ └── modal-dialog.md
└── integrations/
├── formik.md
├── react-router.md
└── typescript.md
To update or improve this skill:
If you're using this as a submodule:
cd agent-skill
git checkout main
git pull origin main
# Make your changes
git add .
git commit -m "Your changes"
git push origin main
# Update parent project to use new version
cd ..
git add agent-skill
git commit -m "Update agent-skill submodule"
Current version: 0.0.1
This skill is maintained separately from the main AnySystem Design library to allow independent updates and versioning.
This is a standalone repository that can be used as:
Same as AnySystem Design library
For issues or questions:
examples/ directory in this repositoryMade for AI Assistants 🤖
This skill enables AI to help developers build better React applications with AnySystem Design.