A collection of curated useful skills for Autohand Code CLI Agent
npx skills add https://github.com/autohandai/community-skills --skill tailwind-ui-patternsقم بتثبيت هذه المهارة باستخدام واجهة سطر الأوامر (CLI) وابدأ في استخدام سير عمل SKILL.md في مساحة عملك.
A curated collection of 200+ skills for the Autohand CLI coding agent.
Browse all skills at skilled.autohand.ai.
Skills are structured knowledge files that teach Autohand how to work with specific technologies, frameworks, and patterns. They provide context, best practices, and code examples that help the AI assistant generate better code from the start.
Instead of repeatedly explaining your stack, conventions, or architecture patterns, you install the relevant skills and Autohand immediately understands how to work within your project.
# Shell (macOS / Linux)
curl -fsSL https://autohand.ai/install | sh
# npm
npm install -g autohand
# bun
bun install -g autohand
Autohand has two modes: interactive (slash commands inside a session) and non-interactive (flags passed directly).
Start a session and use /learn to analyze your project:
autohand
> /learn
/learn uses a two-phase LLM-powered advisor:
For a deeper scan that reads source files:
> /learn deep
To re-analyze and regenerate outdated skills:
> /learn update
Run skill operations directly from the terminal without starting a session:
# Analyze project and install recommended skills
autohand --learn
# Re-analyze and regenerate outdated skills
autohand --learn-update
# Auto-generate 3 skills based on detected stack
autohand --auto-skill
autohand
> /skills install
Browse and install community skills interactively.
# Install a specific skill
autohand --skill-install typescript-refactoring-patterns
# Install at project level (instead of user/global level)
autohand --skill-install react-component-architecture --project
Inside an Autohand session, use these /skills commands:
| Command | Description |
|---|---|
/skills |
List all available skills |
/skills use <name> |
Activate a skill for the current session |
/skills deactivate <name> |
Deactivate an active skill |
/skills info <name> |
Show detailed skill information |
/skills install |
Browse and install community skills |
/skills new |
Create a new skill with a guided wizard |
/skills feedback <slug> <1-5> |
Rate a community skill |
| Category | Count | Description |
|---|---|---|
| Workflows | 42 | Git, CI/CD, testing, API design, deployment |
| Cloud | 40 | AWS, Azure, GCP, Kubernetes, Terraform |
| Marketing | 25 | SEO, analytics, content strategy, A/B testing |
| Agent Skills | 21 | Browser automation, email, evaluation, configuration |
| Frameworks | 16 | React, Next.js, Vue, FastAPI, Django, Rails |
| Design | 15 | UI patterns, Tailwind, accessibility, responsive |
| AI Tools | 12 | LLM integration, image/video generation, embeddings |
| Quality | 9 | Code review, linting, security, performance |
| DevOps | 9 | Docker, monitoring, infrastructure, observability |
| Documentation | 12 | Technical writing, API docs, changelogs |
| Languages | 4 | TypeScript, Python, Rust, Go patterns |
Each skill is a directory with a SKILL.md file:
skill-name/
├── SKILL.md # Main skill file (required)
├── templates/ # Optional templates
├── examples/ # Optional examples
└── README.md # Optional additional docs
---
name: skill-name
description: Brief description of the skill
license: MIT
compatibility: requirements (e.g., typescript 5+)
allowed-tools: read_file write_file apply_patch
metadata:
author: your-name
version: "1.0.0"
---
# Skill Name
## When to Use
Describe when this skill should be activated...
## Patterns
Concrete code examples and best practices...
Skills are loaded from these locations (later sources take precedence):
~/.autohand/skills/ — user-level (global)<project>/.autohand/skills/ — project-levelWe welcome contributions from the community. Every skill helps make Autohand smarter for everyone.
mkdir my-skill-name
SKILL.md file with frontmatter metadata and contentregistry.json:{
"id": "my-skill-name",
"name": "My Skill Name",
"description": "Brief description",
"category": "workflows",
"author": "your-github-username",
"source": "community"
}
~/.autohand/skills/ and verify it works in a sessionPull requests are reviewed for:
You can also use the Submit page on skilled.autohand.ai for a guided walkthrough.
MIT License — see LICENSE for details.
Skills contributed by the community are licensed under their respective licenses as specified in each skill's frontmatter.