.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

  1. Browse the commands/, skills/, or rules/ folders
  2. Copy the files you need into your AI tool's config directory

⚔ Workflow Commands

Automation commands for common development tasks:

CommandDescription
workPick up a GitHub issue — fetch context, create branch, generate spec plan, and optionally open a draft PR
create-taskCreate a GitHub issue with full metadata and optional project board integration
create-prCreate pull requests with AI-generated descriptions
fix-prFix issues raised in PR reviews
review-changesReview uncommitted changes before pushing
review-codeIn-depth code quality analysis
formatAuto-format code and fix TypeScript issues
handoffGenerate context summaries for team handoffs
explainExplain recent code changes in simple terms for junior developers
shipCreate a release PR, bump version, and draft a GitHub release
ultrathinkDeep reasoning mode for complex problems

šŸŽÆ Specialized Skills

Domain-specific procedures for complex tasks:

SkillDescription
commitCommit changes with well-crafted messages, grouping related files into separate commits
code-reviewComprehensive code audits — dead code, duplications, patterns, bugs
feature-planDetailed implementation planning before writing code
frontend-designCreate distinctive, production-grade UI components

šŸ“ Coding Rules

Opinionated conventions enforced across the team:

RuleDescription
codingNaming, styling, and general coding standards
commitCommit message conventions
communicationHow AI should handle questions vs statements
never-auto-commitPrevent AI tools from auto-committing
spec-driven-developmentWrite 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:

  1. Follow the naming convention: kebab-case.md
  2. Include proper YAML frontmatter
  3. Add 2-3 realistic usage examples
  4. Test manually in your AI coding tool
  5. Update relevant README sections

šŸ“ License

MIT


Built by Weaverse — Empowering developers with AI-enhanced workflows.