Agent Skill
2/7/2026

categorize-task

Reference guide for classifying development tasks into the 7-phase clean architecture structure (Foundational → Models → Services → Data → Rules → State Management → UI). Use when you need to determine which architectural phase a task belongs to.

H
hirogakatageri
2GitHub Stars
1Views
npx skills add HirogaKatageri/hirokata-cc-marketplace

SKILL.md

Namecategorize-task
DescriptionReference guide for classifying development tasks into the 7-phase clean architecture structure (Foundational → Models → Services → Data → Rules → State Management → UI). Use when you need to determine which architectural phase a task belongs to.

HiroKata Claude Code Plugin Marketplace

A curated collection of Claude Code plugins for enhanced development workflows, featuring intelligent task tracking and automated requirements-to-implementation pipelines.

📋 View Changelog | 🔗 Version 0.5.0

What's New

Latest Updates (v0.5.0 - Mar 2026)

8-Phase Clean Architecture - The develop plugin implements a complete 8-phase workflow: Foundational → Models → Services → Data → Rules → State Management → UI → Tests, with each phase building on the previous.

5-Agent Comprehensive Review - Five specialized review agents run in parallel after all phases complete: product compliance, business logic and testability, edge cases, architecture alignment, and OWASP Top 10 security. Issues are fixed automatically (up to 2 iterations).

Streamlined 6-Step Workflow with Single User Gate - Only the master plan review requires your input. Everything else — plan splitting, phase execution, review, and fix loops — runs automatically end-to-end.

Three-State Resume - Interrupted runs are detected and resumed intelligently: TASKS.md present resumes execution, master plan only skips to split-plan, neither starts fresh.

Self-Contained Progress Tracking - Progress is tracked via TASKS.md; the tracker plugin is no longer required.

View Full Changelog →

Overview

This marketplace provides production-ready Claude Code plugins that extend Claude's capabilities with specialized agents, skills, and workflows designed for software development teams.

Available Plugins

1. Tracker Plugin (v0.2.0)

A comprehensive project and task management system with intelligent agents and structured tracking.

Features:

  • Phase-based project organization (Planning, Implementation, Testing, etc.)
  • Feature-based tracks that span across phases
  • Intelligent tracker agent for conversational project management
  • Individual skills for direct control (/create-tracker, /add-task, /mark-status, etc.)
  • Progress reports with visual indicators
  • Task dependencies and complexity tracking

Use Cases:

  • Managing multi-phase software projects
  • Coordinating parallel feature development
  • Sprint planning and progress tracking
  • Team task organization

View Documentation →

2. Develop Plugin (v0.5.0)

Automated requirements-to-implementation workflow using an 8-phase clean architecture approach with intelligent commit generation, dedicated software architecture planning, and comprehensive code review system.

Features:

  • Converts requirements documents into working code
  • 8-phase clean architecture (Foundational → Models → Services → Data → Rules → State Management → UI → Review)
  • Fixed parallelism (up to 3 developer agents per phase)
  • Four specialized code review agents
    • Product reviewer for requirements compliance
    • Business logic reviewer for testability and test coverage
    • Edge case reviewer for boundary conditions and error handling
    • Architecture reviewer for clean architecture alignment
  • Comprehensive review skill - Parallel multi-dimensional code review in 2-5 minutes
  • Post-implementation review loop with auto-fix (up to 2 iterations)
  • Software architect agent for comprehensive master plan creation
  • Conventional commit generator with intelligent change grouping
  • Three-state resume capability for interrupted workflows (TASKS.md, master plan only, or fresh start)
  • Progress tracked via TASKS.md file
  • Specialized agents: software architect, product owner, senior developer, and 4 code reviewers (including code-reviewer-security)

Use Cases:

  • Transforming requirements into implementation plans
  • Automated code generation following clean architecture
  • Large-scale feature development
  • Structured refactoring projects
  • Creating semantic, well-organized commit history
  • Pre-PR comprehensive code quality reviews
  • Requirements compliance verification
  • Test coverage and edge case analysis

View Documentation →

Installation

Option 1: Clone the Entire Marketplace

git clone https://github.com/hirogakatageri/hirokata-cc-marketplace.git
cd hirokata

Then use with Claude Code:

cc --plugin-dir ./plugins/tracker
# or
cc --plugin-dir ./plugins/software-development-workflow

Option 2: Install Individual Plugins

Copy specific plugins to your project:

# Install tracker plugin
cp -r hirokata/plugins/tracker /path/to/your-project/.claude-plugin/tracker

# Install develop plugin
cp -r hirokata/plugins/software-development-workflow /path/to/your-project/.claude-plugin/develop

Option 3: Use Multiple Plugins

To use both plugins simultaneously:

# Create a .claude-plugin directory in your project
mkdir -p /path/to/your-project/.claude-plugin

# Copy both plugins
cp -r hirokata/plugins/tracker /path/to/your-project/.claude-plugin/tracker
cp -r hirokata/plugins/software-development-workflow /path/to/your-project/.claude-plugin/develop

Claude Code will automatically load all plugins in .claude-plugin/.

Quick Start

Using Tracker Plugin

# Create a new tracker
/tracker:create-tracker my-project

# Add tasks
/tracker:add-task my-project --phase=1 --track=authentication

# Update status
/tracker:mark-status my-project

# Review progress
/tracker:review-tracker my-project

Or use the intelligent agent:

You: Help me set up tracking for my new web app with authentication and dashboard features

tracker:tracker Agent: [Guides you through structured project setup with intelligent recommendations]

Using Develop Plugin

# Start from requirements
/develop:develop-project requirements.md

# The plugin will:
# 1. Create a comprehensive master plan (software-architect agent)
# 2. Wait for your review and approval
# 3. Split plan into 8 phases and build TASKS.md
# 4. Execute all 8 phases sequentially (up to 3 agents per phase)
# 5. Run comprehensive review and fix issues (up to 2 iterations)
# 6. Generate final summary report

Using Both Together

# Use develop plugin for complete automated project workflow
/develop:develop-project requirements/my-app.md

# The develop plugin manages its own progress via TASKS.md.
# It does not create or update a tracker automatically.

# Use tracker plugin independently for manual task management
# alongside your develop workflow:
/tracker:create-tracker my-app
/tracker:add-task my-app --phase=1 --track=authentication

# Review tracker progress anytime
/tracker:review-tracker my-app

Plugin Architecture

Both plugins follow Claude Code plugin best practices:

plugin-name/
├── .claude-plugin/
│   └── plugin.json          # Plugin manifest
├── agents/                  # Intelligent agents
│   └── agent-name/
│       └── AGENT.md
├── skills/                  # Invokable skills
│   └── skill-name/
│       └── SKILL.md
├── commands/                # Command definitions
│   └── command-name.md
└── README.md               # Plugin documentation

Requirements

  • Claude Code: Latest version
  • Git: For version control integration
  • Node.js/npm (optional): For some development workflows

Contributing

We welcome contributions to existing plugins or new plugin additions.

Adding a New Plugin

  1. Fork this repository
  2. Create your plugin in plugins/your-plugin-name/
  3. Follow the plugin architecture structure
  4. Add comprehensive README.md
  5. Update marketplace.json in .claude-plugin/
  6. Submit a pull request

Plugin Guidelines

  • Follow Claude Code plugin best practices
  • Include comprehensive documentation
  • Provide clear examples and use cases
  • Test with Claude Code before submitting
  • Use semantic versioning

Improving Existing Plugins

  1. Fork this repository
  2. Create a feature branch
  3. Make your improvements
  4. Update relevant documentation
  5. Test thoroughly
  6. Submit a pull request

Marketplace Structure

hirokata-cc-marketplace/
├── .claude-plugin/
│   └── marketplace.json     # Marketplace manifest
├── plugins/
│   ├── tracker/                       # Task tracking plugin
│   └── software-development-workflow/ # Development workflow plugin
├── LICENSE                  # MIT License
└── README.md               # This file

Roadmap

See CHANGELOG.md for detailed version history and upcoming features.

Planned Plugins

  • Test Plugin: Automated test generation and execution
  • Deploy Plugin: Deployment automation workflows
  • Docs Plugin: Documentation generation from code

Planned Enhancements

  • Web-based marketplace browser
  • Plugin dependency management
  • Version compatibility checking
  • Community plugin submissions
  • Enhanced plugin discovery and search

License

MIT License - see LICENSE file for details.

Copyright (c) 2026 Gian Patrick Quintana

Author

Gian Patrick Quintana

Support

For issues, questions, or feature requests:

  1. Check the individual plugin documentation
  2. Search existing issues
  3. Open a new issue with details about your use case
  4. Include relevant error messages or logs

Acknowledgments

Built for the Claude Code ecosystem by developers who believe in:

  • Automated workflows
  • Intelligent agents
  • Clean architecture
  • Developer productivity

Resources

Documentation

Claude Code

Skills Info
Original Name:categorize-taskAuthor:hirogakatageri