.agents

March 18, 2026 ยท View on GitHub

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 git@github.com: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.