ngocsangyem

60 mods across 1 repository, 14 stars between them.

jira-evaluator

25

ngocsangyem/MeowKit

Agent Claude Code

Analyze a single Jira ticket for complexity + inconsistencies via the jira-as CLI wrapper. Read-only. Routed by mk:jira-evaluator skill. NOT for story-point estimation (jira-estimator); NOT for full RCA (jira-analyst).

14 1mo ago A 53 tokens original MIT

jira-fields

26

ngocsangyem/MeowKit

Agent Claude Code

Discover and configure JIRA custom fields via the jira-as CLI wrapper: list fields, find field IDs, check per-project field availability, configure agile field mappings. Routed by mk:jira-fields skill. NOT for setting per-issue field values (jira-issue update); NOT for project admin (jira-admin).

14 1mo ago A 65 tokens original MIT

jira-issue

27

ngocsangyem/MeowKit

Agent Claude Code

Execute JIRA issue CRUD via the jira-as CLI wrapper. Use for: 'create bug/task/story', 'show me PROJ-123', 'update issue', 'delete PROJ-123'. Routed by mk:jira-issue skill — receives task brief via skill-content injection. NOT for transitions (jira-lifecycle); NOT for comments/attachments (jira-collaborate); NOT for…

14 1mo ago A 123 tokens original MIT

jira-jsm

28

ngocsangyem/MeowKit

Agent Claude Code

Execute JIRA Service Management operations via the jira-as CLI wrapper: service desks, request types, requests, customers, organizations, queues, SLAs, approvals (8 sub-domains, 45 verbs total). Routed by mk:jira-jsm skill. Requires JSM-licensed tenant + agent or admin role. NOT for core Jira issue ops (jira-issue)…

14 1mo ago A 86 tokens original MIT

jira-lifecycle

29

ngocsangyem/MeowKit

Agent Claude Code

Drive JIRA workflow lifecycle via the jira-as CLI wrapper: transition through statuses, assign/unassign, resolve/reopen, manage versions and components. Routed by mk:jira-lifecycle skill. NOT for issue CRUD (jira-issue); NOT for comments (jira-collaborate); NOT for bulk transitions (jira-bulk).

14 1mo ago A 70 tokens original MIT

jira-ops

30

ngocsangyem/MeowKit

Agent Claude Code

Inspect JIRA-side cache + project context discovery via the jira-as CLI wrapper. Diagnostic surface: cache-status, cache-clear, discover-project. Routed by mk:jira-ops skill. NOT for issue CRUD; NOT for project admin (jira-admin).

14 1mo ago A 54 tokens original MIT

jira-relationships

31

ngocsangyem/MeowKit

Agent Claude Code

Manage JIRA issue relationships via the jira-as CLI wrapper: link / unlink, blockers, dependencies, clone, bulk-link. Routed by mk:jira-relationships skill. NOT for sprint/epic relationships (jira-agile); NOT for parent/subtask (jira-agile).

14 1mo ago A 60 tokens original MIT

jira-search

32

ngocsangyem/MeowKit

Agent Claude Code

Find JIRA issues by criteria via the jira-as CLI wrapper. Use for: 'search jira', 'find issues where X', 'export search results', JQL filter management. Routed by mk:jira-search skill. NOT for single-issue CRUD (jira-issue); NOT for bulk write ops (jira-bulk).

14 1mo ago A 68 tokens original MIT

jira-time

33

ngocsangyem/MeowKit

Agent Claude Code

Manage JIRA time tracking via the jira-as CLI wrapper: log work, list/edit/delete worklogs, set estimates, generate time reports, bulk-log. Routed by mk:jira-time skill. NOT for sprint capacity (jira-agile).

14 1mo ago A 51 tokens original MIT

journal-writer

34

ngocsangyem/MeowKit

Agent Claude Code

Use this agent when something goes wrong — test failures after multiple fix attempts, production bugs, failed refactors, performance issues, security vulnerabilities found, or architectural decisions proving problematic. Documents the raw reality of what happened, what was tried, and what was learned. Use proactively…

14 1mo ago A 76 tokens original MIT

orchestrator

35

ngocsangyem/MeowKit

Agent Claude Code

Task router for every incoming request. Classifies complexity (trivial/standard/complex), assigns model tier, and routes to the correct specialist agent. Use this agent at the start of every task. It never writes code — only makes routing decisions.

14 1mo ago A 54 tokens original MIT

planner

36

ngocsangyem/MeowKit

Agent Claude Code

Product and engineering planning agent. Runs a two-lens review (product + engineering) on every task and produces a structured plan file before implementation begins. Use when starting any standard or complex task. Enforces Gate 1 — no code without an approved plan. Not for implementation or review verdicts.

14 1mo ago A 62 tokens original MIT

project-manager

37

ngocsangyem/MeowKit

Agent Claude Code

Cross-workflow delivery tracker. Aggregates plan, test, review, contract, and cost state into a classified, evidence-based status report (done / in progress / blocked / not started). Use proactively after phase completions, after multi-agent parallel runs, and when the user asks "what's done", "what's blocked", or…

14 1mo ago A 122 tokens original MIT

researcher

38

ngocsangyem/MeowKit

Agent Claude Code

Use this agent when you need to research technical topics, evaluate libraries or frameworks, find documentation, or gather information before making decisions. Examples: "Research authentication libraries for NestJS", "What are the best practices for WebSocket scaling?", "Compare Prisma vs TypeORM vs Drizzle for our…

14 1mo ago A 93 tokens original MIT

reviewer

39

ngocsangyem/MeowKit

Agent Claude Code

Structural code review agent that performs deep 5-dimension reviews and enforces Gate 2 — no code ships without a passing review verdict. Use in Phase 4 after developer completes implementation and tester confirms green phase. Not for runtime-evaluation or security verdicts.

14 1mo ago A 56 tokens original MIT

security

40

ngocsangyem/MeowKit

Agent Claude Code

Risk-triggered deep security audit specialist for Phase 2 (pre-implementation) and Phase 4 (review). Issues BLOCK verdicts that halt the pipeline for critical vulnerabilities. Auto-activates on changes touching auth, payments, user data, API endpoints, encryption, or another flagged risk surface; the deterministic…

14 1mo ago A 83 tokens original MIT

shipper

41

ngocsangyem/MeowKit

Agent Claude Code

Deployment pipeline agent that executes the full ship sequence: pre-ship checks, conventional commit, feature branch + PR, CI verification, and rollback documentation. Use in Phase 5 after Gate 2 passes. Never commits directly to main. Not for implementation or review approval.

14 1mo ago A 57 tokens original MIT

story-sizer

42

ngocsangyem/MeowKit

Agent Claude Code

Heuristic pre-ticket Fibonacci sizing for a paste-mode batch of user stories. Read-only at Jira; writes Story Sizing Report locally. Auto-create mode delegates ticket creation to mk:jira-issue + mk:jira-collaborate; never reads Jira credentials directly. Forked from mk:story-sizer skill.

14 1mo ago A 68 tokens original MIT

tester

43

ngocsangyem/MeowKit

Agent Claude Code

Test-writing agent. In TDD mode (--tdd / MEOWKITTDD=1), writes failing tests before implementation (red phase) and verifies they pass after (green phase). In default mode (TDD off), writes tests when invoked but does not block the developer. Use in Phase 2 and after implementation. Anti-rationalization rules (no test…

14 1mo ago A 88 tokens original MIT

ui-ux-designer

44

ngocsangyem/MeowKit

Agent Claude Code

Use when frontend work requires UI/UX design decisions — component design, design systems, wireframes, visual review, accessibility audits, or responsive layout. Activated by mk:cook and mk:bootstrap when frontend is detected. Not for production source implementation.

14 1mo ago A 56 tokens original MIT

advise

45

ngocsangyem/MeowKit

Command Claude Code

/advise [the decision or idea you want advice on].

14 1mo ago A 0 tokens original MIT

arch

46

ngocsangyem/MeowKit

Command Claude Code

/arch new [title] /arch list /arch review [number] /arch impact [change description].

14 1mo ago A 0 tokens original MIT

audit

47

ngocsangyem/MeowKit

Command Claude Code

/audit [optional: specific directory or file].

14 1mo ago A 0 tokens original MIT

autobuild

48

ngocsangyem/MeowKit

Command Claude Code

/mk:autobuild [product description] /mk:autobuild --resume [run-id] /mk:autobuild --tier [MINIMAL|FULL|LEAN] /mk:autobuild --budget [amount-usd] /mk:autobuild --max-iter [N].

14 1mo ago A 0 tokens original MIT