.agents
A collection of AI-powered coding tools to enhance development productivity.
.agents
Skills, commands, and rules for AI-powered coding tools ā used daily to supercharge development productivity.
This repository contains workflow commands, specialized skills, coding rules, and system hooks that work with any AI coding assistant that supports markdown-based configuration.
š¦ What's Inside
.agents/
āāā commands/ # 11 workflow automation commands
āāā skills/ # 4 domain-specific skills
āāā rules/ # 5 coding convention rules
āāā claude-code-hooks.json # Hook configuration (Claude Code specific)
āāā claude-code-notifier.sh # Cross-platform notification script
āāā statusline.sh # Custom status line for Claude Code terminal UI
š Quick Start
Option 1: Clone Entire Setup
cd ~
git clone [email protected]:Weaverse/.agents.git
# Symlink into your AI tool's config directory
# For Claude Code:
ln -s ~/.agents/commands ~/.claude/commands
ln -s ~/.agents/skills ~/.claude/skills
ln -s ~/.agents/rules ~/.claude/rules
Option 2: Copy Individual Items
- Browse the
commands/,skills/, orrules/folders - Copy the files you need into your AI tool's config directory
ā” Workflow Commands
Automation commands for common development tasks:
| Command | Description |
|---|---|
| work | Pick up a GitHub issue ā fetch context, create branch, generate spec plan, and optionally open a draft PR |
| create-task | Create a GitHub issue with full metadata and optional project board integration |
| create-pr | Create pull requests with AI-generated descriptions |
| fix-pr | Fix issues raised in PR reviews |
| review-changes | Review uncommitted changes before pushing |
| review-code | In-depth code quality analysis |
| format | Auto-format code and fix TypeScript issues |
| handoff | Generate context summaries for team handoffs |
| explain | Explain recent code changes in simple terms for junior developers |
| ship | Create a release PR, bump version, and draft a GitHub release |
| ultrathink | Deep reasoning mode for complex problems |
šÆ Specialized Skills
Domain-specific procedures for complex tasks:
| Skill | Description |
|---|---|
| commit | Commit changes with well-crafted messages, grouping related files into separate commits |
| code-review | Comprehensive code audits ā dead code, duplications, patterns, bugs |
| feature-plan | Detailed implementation planning before writing code |
| frontend-design | Create distinctive, production-grade UI components |
š Coding Rules
Opinionated conventions enforced across the team:
| Rule | Description |
|---|---|
| coding | Naming, styling, and general coding standards |
| commit | Commit message conventions |
| communication | How AI should handle questions vs statements |
| never-auto-commit | Prevent AI tools from auto-committing |
| spec-driven-development | Write specs before code |
š Status Line
statusline.sh is a custom status line script for Claude Code's terminal UI. It displays:
- Session stats ā duration, cost, and token usage
- Active model ā shortened name (e.g.,
Sonnet 4.5) - Working directory ā last two path segments
- Git status ā current branch + clean (
ā) or dirty (ā) indicator
Setup (Claude Code):
ln -s ~/.agents/statusline.sh ~/.claude/statusline.sh
Then configure it in your Claude Code settings:
{
"statusCommand": "~/.claude/statusline.sh"
}
š System Hooks
The included claude-code-hooks.json and claude-code-notifier.sh enable system notifications for:
- Session start/end
- Task completion
- Custom alerts
Cross-platform support: macOS, Linux, Windows (PowerShell).
Note: Hooks are currently Claude Code specific. Contributions for other tools welcome.
š ļø Development
See AGENTS.md for:
- Validation commands
- Code style guidelines
- Frontmatter requirements
- Quality checklist
š¤ Contributing
Contributions welcome! When adding new commands/skills:
- Follow the naming convention:
kebab-case.md - Include proper YAML frontmatter
- Add 2-3 realistic usage examples
- Test manually in your AI coding tool
- Update relevant README sections
š License
MIT
Built by Weaverse ā Empowering developers with AI-enhanced workflows.