Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By tatematsu-k
Everything Claude Code: Battle-tested agents, skills, hooks, and commands for software development, content creation, research, and operations. Originally from affaan-m/everything-claude-code.
npx claudepluginhub tatematsu-k/ai-development-skills --plugin eccAnswer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
Incrementally fix build and type errors with minimal, safe changes.
Create or verify a checkpoint in your workflow.
Start NanoClaw v2 — ECC's persistent, zero-dependency REPL with model routing, skill hot-load, branching, compaction, export, and metrics.
Comprehensive security and quality review of uncommitted changes:
Software architecture specialist for system design, scalability, and technical decision-making. Use PROACTIVELY when planning new features, refactoring large systems, or making architectural decisions.
Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.
Personal communication chief of staff that triages email, Slack, LINE, and Messenger. Classifies messages into 4 tiers (skip/info_only/meeting_info/action_required), generates draft replies, and enforces post-send follow-through via hooks. Use when managing multi-channel communication workflows.
Expert code review specialist. Proactively reviews code for quality, security, and maintainability. Use immediately after writing or modifying code. MUST BE USED for all code changes.
PostgreSQL database specialist for query optimization, schema design, security, and performance. Use PROACTIVELY when writing SQL, creating migrations, designing schemas, or troubleshooting database performance. Incorporates Supabase best practices.
REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs.
Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter.
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
Bun as runtime, package manager, bundler, and test runner. When to choose Bun vs Node, migration notes, and Vercel support.
Anthropic Claude API patterns for Python and TypeScript. Covers Messages API, streaming, tool use, vision, extended thinking, batches, prompt caching, and Claude Agent SDK. Use when building applications with the Claude API or Anthropic SDKs.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Language-agnostic development process harness implementing the Stateless Agent Methodology (SAM) 7-stage pipeline with ARL human touchpoint model and Voltron-style language plugin composition. Provides orchestration, workflows, planning, verification, and testing methodology that any language plugin can compose with.
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, commands, and rules evolved over 10+ months of intensive daily use
Persona-driven AI development team: orchestrator, team agents, review agents, skills, slash commands, and advisory hooks for Claude Code
Unified Claude Code plugin merging superpowers workflows (TDD, debugging, planning) with everything-claude-code productivity (agents, learning, hooks, rules)
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
AI-DLC based development workflow skills: requirement definition, system architecture, PR-scoped subtask management, TDD implementation, and PR creation with deploy-granularity separation
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Share bugs, ideas, or general feedback.
AI-DLC (AI-Driven Development Life Cycle) と Everything Claude Code を組み合わせた開発ワークフロースキル集です。
対応ハーネス: Claude Code / Cursor
[scripts] プレフィックス付き別コミットで追跡性を確保affaan-m/everything-claude-code (v1.8.0) から取り込んだスキル・コマンド・エージェント。Go/Python固有のものを除外し、TypeScript/言語非依存のものを収録。
# Step 1: マーケットプレースを追加 (初回のみ)
/plugin marketplace add tatematsu-k/ai-development-skills
# Step 2: プラグインをインストール
/plugin install aidlc@aidlc-skills
/plugin install ecc@aidlc-skills
# このリポジトリをクローン
git clone https://github.com/tatematsu-k/ai-development-skills.git /tmp/ai-development-skills
# aidlc プラグインをコピー
mkdir -p /path/to/your-project/.claude/skills /path/to/your-project/.claude/commands
cp -r /tmp/ai-development-skills/plugins/aidlc/skills/* /path/to/your-project/.claude/skills/
cp /tmp/ai-development-skills/plugins/aidlc/commands/* /path/to/your-project/.claude/commands/
# ecc プラグインをコピー
cp -r /tmp/ai-development-skills/plugins/ecc/skills/* /path/to/your-project/.claude/skills/
cp /tmp/ai-development-skills/plugins/ecc/commands/* /path/to/your-project/.claude/commands/
mkdir -p /path/to/your-project/.claude/agents
cp /tmp/ai-development-skills/plugins/ecc/agents/* /path/to/your-project/.claude/agents/
# CLAUDE.md のルールを対象プロジェクトに追記
cat /tmp/ai-development-skills/CLAUDE.md >> /path/to/your-project/CLAUDE.md
/plugin uninstall aidlc
/plugin uninstall ecc
/aidlc
「要件定義フェーズを開始します」と応答されれば正常にインストールされています。
スキル・コマンド・エージェントを Cursor の .cursor/rules/ 形式 (.mdc) に変換して利用できます。
# このリポジトリをクローン
git clone https://github.com/tatematsu-k/ai-development-skills.git /tmp/ai-development-skills
# 対象プロジェクトにルールをインストール
bash /tmp/ai-development-skills/scripts/install-cursor-rules.sh /path/to/your-project
# 特定プラグインのみインストールする場合
bash /tmp/ai-development-skills/scripts/install-cursor-rules.sh --plugin=aidlc /path/to/your-project
bash /tmp/ai-development-skills/scripts/install-cursor-rules.sh --plugin=ecc /path/to/your-project
# シンボリックリンクで常に最新を参照する場合
bash /tmp/ai-development-skills/scripts/install-cursor-rules.sh --symlink /path/to/your-project
git clone https://github.com/tatematsu-k/ai-development-skills.git /tmp/ai-development-skills
mkdir -p /path/to/your-project/.cursor/rules
cp /tmp/ai-development-skills/cursor/rules/*.mdc /path/to/your-project/.cursor/rules/
インストール後、各 .mdc ファイルのフロントマターを編集して挙動を調整できます:
---
description: "ルールの説明 (Cursorが自動判定に使用)"
globs: "**/*.ts" # 特定ファイルパターンに限定
alwaysApply: true # 常に適用 (デフォルト: false)
---
| フィールド | 説明 |
|---|---|
description | ルールの適用条件の説明。Cursor が会話の文脈に基づいて自動適用を判定する |
globs | ファイルパターン指定。マッチするファイルを扱う際に自動で適用される |
alwaysApply | true にすると全ての会話で常に適用される |
元のスキル定義を変更した場合、.mdc ファイルを再生成できます:
bash scripts/generate-cursor-rules.sh
rm /path/to/your-project/.cursor/rules/aidlc--*.mdc
rm /path/to/your-project/.cursor/rules/ecc--*.mdc
Claude Code と Cursor では利用可能な機能に差異があります:
| 機能 | Claude Code | Cursor |
|---|---|---|
| スキル (開発パターン・ガイドライン) | ✅ | ✅ |
| コマンド (ワークフロー指示) | ✅ /command | ✅ ルールとして参照 |
| エージェント (専門レビュアー) | ✅ 自動起動 | ✅ ルールとして参照 |
| フック (PreToolUse/PostToolUse) | ✅ | ❌ 非対応 |
| セッション管理 | ✅ | ❌ 非対応 |
| プラグインマーケットプレース | ✅ | ❌ 非対応 |
| モデルルーティング (opus/sonnet/haiku) | ✅ | ❌ 非対応 |
/aidlc ユーザーのプロフィール画像アップロード機能を追加したい
これにより以下のフェーズが順に実行されます:
1. 要件定義 — 対話を通じて要件を明確化
成果物: aidlc-docs/requirements/YYYY-MM-DD-<feature>.md
2. システム設計 — API設計・シーケンス図・デプロイ依存関係マップ
成果物: aidlc-docs/designs/YYYY-MM-DD-<feature>.md
3. Human Review Gate — あなたが設計書をレビューし承認
4. サブタスク分割 — PR単位でタスクを分割
管理先: ローカルファイル or GitHub Issue (初回に選択)
5. 実装 — サブタスク単位でTDD実装・コミット (80%+カバレッジ)
↓
6. PR作成 — 検証ループ実行 → PRを作成しタスクステータスを更新
↓
(5→6 をサブタスクの数だけ繰り返し)
# TDD で実装
/tdd
# コードレビュー
/code-review
# 実装計画を作成
/plan
# エージェントによるオーケストレーション
/orchestrate