Skip to content

v2.0.0 — The Leverage Release

The biggest MeowKit update yet. Extracted high-leverage patterns from ECC's 38-agent, 156-skill ecosystem and adapted them for MeowKit's disciplined workflow. Result: 5 new skills, 17 reference merges across 10 skills, hook profiling, naming cleanup, and rule relaxations — without adding agents or compromising hard gates.

Thesis: Keep the discipline, add leverage.

Highlights

5 New Skills

SkillPurposePhase
meow:decision-frameworkOperational decision architecture: triage, escalation, case management1 (Plan)
meow:verifyUnified verification: build→lint→test→type-check→coverage3→4 transition
meow:api-designREST/GraphQL API design patterns1 (Plan)
meow:build-fixBuild error triage with language-specific fix references3 (Build)
meow:databaseSchema design, migrations, query optimization (PostgreSQL primary)1/3

17 Reference Merges Across 10 Skills

Existing skills got deeper with new JIT-loaded references:

SkillNew References
meow:investigateRCA method selection (5 Whys / Ishikawa / 8D / Fault Tree), anti-patterns
meow:plan-creatorOps metrics design, cold-start context briefs, plan mutation protocol, worked example
meow:qa4-phase browser QA checklist (smoke → interaction → visual → a11y)
meow:agent-detectorToken budget depth levels (25/50/75/100%)
meow:office-hoursFounder Review + User Journey Audit modes
meow:typescriptPrioritized TS/JS review checklist (CRITICAL → MEDIUM)
meow:cookLoop safety protocol (stall detection, cost drift, escalation)
meow:reviewIterative evaluation protocol (max 3 passes for high-stakes code)
meow:frontend-designAnti-slop directives (avoid AI-generated UI cliches)
meow:testingE2E best practices (Agent Browser, POM, flaky quarantine)

Hook Runtime Profiling

New MEOW_HOOK_PROFILE environment variable controls hook intensity:

ProfileHooks ActiveUse When
strictAll 10 hooksCOMPLEX tasks, security-critical
standard8 hooks (skip cost-meter, post-session)Default — everyday development
fast3 hooks (gate-enforcement, privacy-block, context-loader only)Rapid iteration, prototyping
bash
# Set in .env or shell
MEOW_HOOK_PROFILE=fast

Safety-critical hooks (gate-enforcement, privacy-block) never skip, regardless of profile.

Naming Cleanup

OldNewStatus
meow:shippingmeow:shipMerged (redirect in place)
meow:documentationmeow:document-releaseMerged (redirect in place)
meow:debugmeow:investigateMerged (redirect in place)

Redirects stay for 2 releases. Old invocations show deprecation notice.

Rule Relaxations

MICRO-TASK TDD Exemption — Non-production code <30 lines classified as MICRO-TASK by orchestrator is exempt from TDD. Production code always requires TDD regardless of size. (Distinct from TRIVIAL which is cosmetic-only.)

Staged Parallel Mode — When strict zero-file-overlap is impractical, split overlapping files sequentially while non-overlapping work runs in parallel. Same max-3-agent limit.

Memory Capture Enhancement — Budget extended from 2 min / 3 markers to 5 min / 5 markers. CRITICAL/SECURITY markers processed regardless of age. New --capture-all override.

Mandatory Simplification Step

meow:cook workflow now includes a mandatory meow:simplify pass between Phase 3 (Build) and Phase 4 (Review). Catches over-engineering before review.

Proactive Learning Observer

New learning-observer.sh PostToolUse hook detects session patterns:

  • File edited 3+ times → churn pattern logged
  • Feeds into post-session.sh retroactive capture

Active in strict and standard profiles.

External Integrations

Three new skills for connecting MeowKit to external design and project management tools:

SkillPurpose
meow:intakeTool-agnostic ticket/PRD analysis: completeness scoring, product area classification, RCA, media handling
meow:jiraJira execution via Atlassian MCP: create, search, update, transition, link, sprint management
meow:figmaFigma design analysis via Figma MCP: extract design context, translate to code, extract tokens

Workflow: meow:intake analyzes → meow:jira executes Jira actions → meow:figma extracts design context → meow:cook implements.

See PRD Intake Automation and Tickets with Media for full workflows.

Migration

All changes are non-breaking. Deprecated skill names have redirect SKILL.md files. New MEOW_HOOK_PROFILE defaults to standard (matches pre-v2.0 behavior). Upgrade with:

bash
npx mewkit init  # re-run to get new skills + references

Released under the MIT License.