Skip to content

JikiME-ADK Command Reference

A comprehensive reference document for all slash commands in JikiME-ADK.

Overview

JikiME-ADK provides three types of commands:

TypeDescriptionCommands
Type A: WorkflowCore development workflow0-project, 1-plan, 2-run, 3-sync
Type B: UtilityQuick execution and automationjarvis, test, loop, verify
StandaloneIndependent execution utilitiesarchitect, build-fix, cleanup, codemap, docs, e2e, learn, perspective, refactor, security
GeneratorSkill and code generationskill-create, migration-skill
MigrationLegacy migrationmigrate, migrate-0~4

Command Map

                    ┌─────────────────────────────────────┐
                    │        JikiME-ADK Commands          │
                    └─────────────────────────────────────┘

    ┌───────────────┬───────────────┼───────────────┬───────────────┐
    │               │               │               │               │
    ▼               ▼               ▼               ▼               ▼
┌─────────┐   ┌─────────┐   ┌─────────┐   ┌─────────┐   ┌─────────┐
│Workflow │   │ Utility │   │Generator│   │Standalone│   │Migration│
│(Type A) │   │(Type B) │   │         │   │         │   │         │
└─────────┘   └─────────┘   └─────────┘   └─────────┘   └─────────┘
    │               │               │               │               │
 0-project       jarvis      skill-create      architect        migrate
    ↓            test       migration-skill   build-fix      migrate-0~4
  1-plan         loop                          cleanup
    ↓           verify                         codemap
  2-run                                          docs
    ↓                                            e2e
  3-sync                                        learn
                                            perspective
                                              refactor
                                              security

Type A: Workflow Commands

Commands that comprise the core development workflow.

/jikime:0-project

Project initialization and document generation

ItemContent
DescriptionProject setup and document generation through codebase analysis
TypeWorkflow (Type A)
Context-
Agent Chainmanager-project → Explore → manager-docs

Usage

bash
/jikime:0-project

Process

PHASE 0: Project type detection
    └─ New Project / Existing Project / Migration Project

PHASE 0.5: Information gathering (New/Migration)
    └─ manager-project: Collect project settings

PHASE 1: Codebase analysis (Existing)
    └─ Explore: Analyze structure, tech stack, core features

PHASE 2: User confirmation
    └─ AskUserQuestion: Approve analysis results

PHASE 3: Document generation
    └─ manager-docs: Generate product.md, structure.md, tech.md

PHASE 3.5: Development environment check
    └─ Check and guide LSP server installation

PHASE 4: Complete
    └─ Next step guidance

Output Files

  • .jikime/project/product.md - Product overview, features, user value
  • .jikime/project/structure.md - Project architecture and directory structure
  • .jikime/project/tech.md - Tech stack, dependencies, technical decisions

/jikime:1-plan

SPEC definition and development branch creation

ItemContent
DescriptionDefine requirements as EARS format SPEC document
TypeWorkflow (Type A)
Contextplanning.md
Agent ChainExplore (optional) → manager-spec → manager-git (conditional)

Usage

bash
# Generate SPEC only (default)
/jikime:1-plan "User authentication system"

# SPEC + Git branch
/jikime:1-plan "User authentication system" --branch

# SPEC + Git Worktree (parallel development)
/jikime:1-plan "User authentication system" --worktree

Options

OptionDescription
--branchAuto-create feature branch
--worktreeCreate isolated development environment with Git Worktree

Process

PHASE 1: Project analysis & SPEC planning
    └─ manager-spec: Generate SPEC candidates, design EARS structure

PHASE 1.5: Pre-validation
    └─ SPEC type classification, ID format validation, duplicate check

PHASE 2: SPEC document generation
    └─ Generate spec.md, plan.md, acceptance.md

PHASE 3: Git branch/Worktree setup (conditional)
    └─ Create branch or worktree based on flags

Output Files

.jikime/specs/SPEC-{ID}/
├── spec.md        # Core specification (EARS format)
├── plan.md        # Implementation plan
└── acceptance.md  # Acceptance criteria (Given/When/Then)

/jikime:2-run

DDD-based SPEC implementation

ItemContent
DescriptionImplement SPEC with ANALYZE-PRESERVE-IMPROVE cycle
TypeWorkflow (Type A)
Contextdev.md
Agent Chainmanager-strategy → manager-ddd → manager-quality → manager-git

Usage

bash
# Standard execution
/jikime:2-run SPEC-AUTH-001

# Execute after creating checkpoint
/jikime:2-run SPEC-AUTH-001 --checkpoint

# Force Personal/Team mode
/jikime:2-run SPEC-AUTH-001 --personal
/jikime:2-run SPEC-AUTH-001 --team

Options

OptionDescription
--checkpointCreate recovery point before start
--skip-qualitySkip quality verification (not recommended)
--personalForce Personal git mode
--teamForce Team git mode

DDD Cycle

┌─────────────┐
│   ANALYZE   │  ← Understand current behavior
└──────┬──────┘

┌─────────────┐
│  PRESERVE   │  ← Preserve behavior with characterization tests
└──────┬──────┘

┌─────────────┐
│   IMPROVE   │  ← Change with confidence
└──────┬──────┘

    (Repeat)

Process

PHASE 1: Strategy analysis
    └─ manager-strategy: Establish implementation strategy

PHASE 1.5: Task decomposition
    └─ Task tracking with TodoWrite

PHASE 2: DDD implementation
    └─ manager-ddd: Execute DDD cycle for each task

PHASE 2.5: Quality verification
    └─ manager-quality: Test coverage, lint, type check

PHASE 3: Git operations
    └─ manager-git: Commit, PR creation (team mode)

PHASE 4: Complete
    └─ Result report, next step guidance

/jikime:3-sync

Document synchronization and SPEC completion

ItemContent
DescriptionSync code changes with documentation, SPEC completion processing
TypeWorkflow (Type A)
Contextsync.md
Agent Chainmanager-quality → manager-docs → manager-git

Usage

bash
# Sync specific SPEC
/jikime:3-sync SPEC-AUTH-001

# Auto-execute without prompts
/jikime:3-sync SPEC-AUTH-001 --auto

# Regenerate documents
/jikime:3-sync SPEC-AUTH-001 --force

# Check all SPEC status
/jikime:3-sync --status

# Sync project documents only
/jikime:3-sync --project

Options

OptionDescription
--autoAuto-execute without prompts
--forceRegenerate all documents
--statusDisplay all SPEC sync status
--projectSync project-level documents only

Process

PHASE 0.5: Pre-quality check
    └─ Verify implementation complete, tests passed

PHASE 1: Document analysis
    └─ Scan code changes, map document impacts

PHASE 2: Document update
    └─ manager-docs: Update product.md, structure.md, tech.md, CHANGELOG

PHASE 3: SPEC completion
    └─ Change status to "completed", generate completion summary

PHASE 4: PR/Merge management (Team mode)
    └─ Update PR, provide merge options

PHASE 5: Complete
    └─ Sync report, next step guidance

Type B: Utility Commands

Commands for quick execution and automation.

/jikime:jarvis

J.A.R.V.I.S. - Intelligent Autonomous Orchestration

ItemContent
DescriptionIntelligent orchestrator inspired by Iron Man's AI assistant
TypeUtility (Type B)
Context-
Features5-way parallel exploration, multi-strategy comparison, adaptive execution, predictive suggestions

Usage

bash
# Basic usage (auto strategy)
/jikime:jarvis "Add JWT authentication"

# Safe strategy (conservative)
/jikime:jarvis "Refactor payment module" --strategy safe

# Fast strategy (aggressive)
/jikime:jarvis "Fix typo in README" --strategy fast

# Enable auto loop
/jikime:jarvis "Implement user dashboard" --loop --max 20

# Resume previous work
/jikime:jarvis resume SPEC-AUTH-001

Options

OptionDescriptionDefault
--strategyExecution strategy: auto, safe, fastauto
--loopEnable auto error fix loopconfig
--max NMaximum iterations50
--branchAuto-create feature branchconfig
--prAuto-create PR on completionconfig
--resume SPECResume previous work-

Strategy Comparison

StrategyRiskSpeedRollbackTest Coverage
ConservativeLowSlowEasy100%
BalancedMediumMediumMedium85%
AggressiveHighFastDifficult70%

Autonomous Flow

PHASE 0: Preemptive information gathering (5-way parallel)
    ├── Explore Agent: Codebase structure
    ├── Research Agent: External docs, best practices
    ├── Quality Agent: Current state diagnosis
    ├── Security Agent: Pre-scan security impact
    └── Performance Agent: Performance impact prediction

PHASE 1: Multi-strategy planning
    ├── Strategy A: Conservative
    ├── Strategy B: Balanced
    └── Strategy C: Aggressive
    └─ Trade-off analysis → Select optimal strategy

PHASE 2: Adaptive DDD implementation
    └─ Self-diagnosis loop (progress check, strategy pivot decision)

PHASE 3: Completion & prediction
    └─ Document sync + predictive next step suggestions

/jikime:test

Test execution utility

ItemContent
DescriptionQuick execution of unit/integration tests
TypeUtility (Type B)
Context-
Related Command/jikime:e2e (E2E tests)

Usage

bash
# Run all tests
/jikime:test

# Include coverage report
/jikime:test --coverage

# Specific test type only
/jikime:test --unit
/jikime:test --integration

# Watch mode
/jikime:test --watch

# Auto-fix failing tests
/jikime:test --fix

Options

OptionDescription
--coverageGenerate coverage report
--unitRun unit tests only
--integrationRun integration tests only
--watchWatch mode for continuous testing
--fixAuto-fix failing tests when possible

Coverage Targets

TypeTarget
Business Logic90%+
API Endpoints80%+
UI Components70%+
Overall80%+

/jikime:loop

Ralph Loop - Iterative improvement based on LSP/AST-grep feedback

ItemContent
DescriptionProgressive code improvement with intelligent feedback loop
TypeUtility (Type B)
Contextdebug.md
Skilljikime-workflow-loop

Usage

bash
# Basic usage (fix all errors)
/jikime:loop "Fix all TypeScript errors"

# With options
/jikime:loop "Remove security vulnerabilities" --max-iterations 5 --zero-security

# Specific directory
/jikime:loop @src/services/ "Fix all lint errors" --zero-warnings

# Until tests pass
/jikime:loop "Fix failing tests" --tests-pass --max-iterations 10

# Cancel active loop
/jikime:loop --cancel

Options

OptionDescriptionDefault
--max-iterationsMaximum iteration count10
--zero-errorsRequire zero errorstrue
--zero-warningsRequire zero warningsfalse
--zero-securityRequire zero security issuesfalse
--tests-passRequire all tests to passfalse
--stagnation-limitIterations without improvement limit3
--cancelCancel active loop-

Process

1. Initialize Loop
   jikime hooks start-loop --task "..." --options ...

2. Load Skill
   Skill("jikime-workflow-loop")

3. Execute Iteration
   - Analyze current state
   - Fix issues one by one
   - Collect LSP/AST-grep feedback

4. Stop Hook Evaluation
   - Check completion conditions
   - Calculate improvement rate
   - Decide Continue or Complete

5. (Continue) Reinject feedback

6. (Complete) Generate final report

/jikime:verify

Comprehensive quality verification

ItemContent
DescriptionVerify build, types, lint, tests, and security at once
TypeUtility (Type B)
Context-
FeaturesLSP Quality Gates, TRUST 5 framework, Adversarial Review integration

Usage

bash
# Standard verification (recommended)
/jikime:verify

# Quick check (build + types only)
/jikime:verify quick

# Full verification (all checks + deps)
/jikime:verify full

# Pre-PR verification (full + security + Adversarial Review)
/jikime:verify pre-pr

# Attempt auto-fix
/jikime:verify --fix

# CI/CD mode (exit codes)
/jikime:verify --ci

# JSON output (for automation)
/jikime:verify --json

# Check changed files only
/jikime:verify --incremental

Verification Profiles

ProfileVerification ItemsUse Case
quickBuild, TypesQuick check during development
standardBuild, Types, Lint, TestsDefault, after changes
fullAll + Deps, CoverageBefore major commits
pre-prFull + Security + AdversarialBefore PR creation

Verification Phases

PhaseVerification ContentGate
1. BuildCompilation successFAIL → Immediate stop
2. Type CheckTypeScript/PyrightError → Fix required before PR
3. LintESLint/RuffError → Fix, Warning → Document
4. Test SuiteIncluding coverageFail → Fix, <80% → Warning
5. SecuritySecrets, vulnerabilitiesSecret → CRITICAL
6. LSP GatesQuality thresholdsRegression → Block PR
7. TRUST 55-principle complianceReport non-compliant items
8. Adversarial3-way parallel verification (pre-pr, full only)Adjusted severity

Adversarial Review (v1.1.0+)

In pre-pr and full profiles, 3 subagents run in parallel:

SubagentRole
False Positive FilterIdentify false positives in Phase 1-7 results
Missing Issues FinderDetect missed issues from new perspectives
Context ValidatorCompare with original intent, verify pattern consistency
Example results:
- False Positives Filtered: 2 warnings (test fixtures)
- Missing Issues Found: 1 race condition
- Context Validated: ✅

Adjusted issues: 3 warnings → 1 warning (after filtering)
New issues: 1 (race condition in async handler)

Standalone Utility Commands

Utility commands that can be used independently of the workflow.

/jikime:architect

Architecture review and design

ItemContent
DescriptionSystem design, trade-off analysis, ADR generation
Contextplanning.md
Standalone Use✅ High - Can be used independently without full workflow

Usage

bash
# Review current architecture
/jikime:architect

# Design new feature architecture
/jikime:architect Design payment system

# Generate ADR
/jikime:architect --adr "Use PostgreSQL over MongoDB"

# Trade-off analysis
/jikime:architect --tradeoff "Monolith vs Microservices"

Options

OptionDescription
[description]Feature/system to design
--adrGenerate Architecture Decision Record
--tradeoffTrade-off analysis
--reviewReview existing architecture

Architecture Principles

PrincipleDescription
ModularityHigh cohesion, low coupling
ScalabilityHorizontally scalable
MaintainabilityEasy to understand and test
SecurityDefense in depth

/jikime:build-fix

Progressive build error fixing

ItemContent
DescriptionSafely fix TypeScript and build errors one by one
Contextdebug.md
Standalone Use✅ High - Use immediately when build fails

Usage

bash
# Fix all build errors
/jikime:build-fix

# Fix errors in specific file
/jikime:build-fix @src/services/order.ts

# Preview without applying
/jikime:build-fix --dry-run

Options

OptionDescription
@pathSpecify specific file
--dry-runPreview without applying
--maxMaximum errors to fix (default: 10)

Safety Rules

  • One error at a time - Safety first
  • Verify after each fix - Stop if new errors detected
  • Minimal changes - Only necessary minimum modifications

/jikime:cleanup

Dead code detection and safe removal

ItemContent
DescriptionComprehensive dead code analysis with knip, depcheck, ts-prune and DELETION_LOG tracking
Contextdev.md
Agentrefactorer
Standalone Use✅ High - Can run independently anytime

Usage

bash
# Scan dead code (analysis only)
/jikime:cleanup scan

# Remove safe items only
/jikime:cleanup remove --safe

# Remove including careful items
/jikime:cleanup remove --careful

# Specific category only
/jikime:cleanup remove --deps
/jikime:cleanup remove --exports
/jikime:cleanup remove --files

# Check deletion log
/jikime:cleanup log

# Comprehensive report
/jikime:cleanup report

Options

OptionDescription
scanAnalyze codebase (no changes)
removeRemove dead code
reportComprehensive cleanup report
logCheck DELETION_LOG.md
--safeLow-risk items only
--carefulInclude medium-risk
--depsUnused dependencies
--exportsUnused exports
--filesUnused files
--dry-runPreview only

Risk Classification

LevelCategoryAuto Remove
SAFEnpm deps, imports, eslint-disable
CAREFULexports, files, types⚠️ Confirmation required
RISKYPublic API, dynamic imports❌ Manual review

/jikime:codemap

AST-based architecture mapping

ItemContent
DescriptionAuto-generate architecture documentation from codebase using ts-morph, madge
Contextsync.md
Skilljikime-workflow-codemap
Standalone Use✅ High - Can run independently anytime

Usage

bash
# Generate full architecture map
/jikime:codemap all

# Specific area only
/jikime:codemap frontend
/jikime:codemap backend
/jikime:codemap database
/jikime:codemap integrations

# Include AST analysis
/jikime:codemap all --ast

# Generate dependency graph
/jikime:codemap all --deps

# JSON output (for automation)
/jikime:codemap all --json

Options

OptionDescription
allCodemap all areas
frontendFrontend architecture
backendBackend/API architecture
databaseDB schema/models
integrationsExternal services
--astts-morph AST analysis
--depsmadge dependency graph
--refreshForce regeneration
--jsonJSON output

Output

docs/CODEMAPS/
├── INDEX.md          # Architecture overview
├── frontend.md       # Frontend structure
├── backend.md        # Backend structure
├── database.md       # DB schema
├── integrations.md   # External services
└── assets/
    └── dependency-graph.svg

/jikime:docs

Document update

ItemContent
DescriptionSync README, API docs, code comments with code
Context-
Standalone Use⚠️ Medium - Partial overlap with 3-sync

Usage

bash
# Update all documents
/jikime:docs

# Specific document type
/jikime:docs --type api
/jikime:docs --type readme
/jikime:docs --type changelog

# Generate missing documents
/jikime:docs --generate

# For specific code changes
/jikime:docs @src/api/

Options

OptionDescription
@pathSpecific code target
--typeDocument type: api, readme, changelog, jsdoc
--generateGenerate missing documents
--dry-runShow changes without applying

vs 3-sync

Featuredocs3-sync
SPEC-based
CHANGELOG
Project docs
Git PR management
SPEC completion

Recommendation: Use 3-sync with SPEC workflow, use docs for quick document updates only


/jikime:e2e

E2E Testing (Playwright)

ItemContent
DescriptionGenerate and run E2E tests with Playwright
Context-
Standalone Use✅ High - Separate domain from test

Usage

bash
# Generate E2E test for flow
/jikime:e2e Test login flow

# Run existing E2E tests
/jikime:e2e --run

# Run specific test
/jikime:e2e --run @tests/e2e/auth.spec.ts

# Debug mode
/jikime:e2e --run --debug

Options

OptionDescription
[description]User flow to test
--runRun existing tests
--debugDebug mode (headed browser)
--headedShow browser window

vs test

Featuree2etest
ScopeFull user flowUnit/integration
ToolPlaywrightVitest, Jest, Pytest, etc.
SpeedSlowFast
Use CaseCritical user journeysBusiness logic, API

/jikime:learn

Codebase exploration and learning

ItemContent
DescriptionInteractive learning of architecture, patterns, implementation details
Contextresearch.md
Standalone Use✅ High - Useful for onboarding, code understanding

Usage

bash
# Full overview
/jikime:learn

# Learn specific topic
/jikime:learn authentication flow

# Learn specific file
/jikime:learn @src/services/order.ts

# Interactive Q&A mode
/jikime:learn --interactive

Options

OptionDescription
[topic]Specific topic to learn
@pathLearn specific file/module
--interactiveInteractive Q&A mode
--depthDetail level: overview, detailed, deep

Topics

  • Architecture: Project structure, patterns
  • Features: How features work, implementation
  • Conventions: Coding style, naming, organization
  • Data Flow: Data flow

/jikime:perspective

Multi-perspective parallel analysis

ItemContent
DescriptionSimultaneous analysis from 4 perspectives: Architecture, Security, Performance, Testing
Context-
Skilljikime-workflow-parallel
Standalone Use✅ High - Can run independently anytime

Usage

bash
# Analyze entire project
/jikime:perspective

# Analyze specific path
/jikime:perspective @src/api/

# Focus on specific perspective
/jikime:perspective --focus security

# Deep analysis
/jikime:perspective --depth deep

# Quick scan
/jikime:perspective --depth quick

# Combined options
/jikime:perspective @src/auth/ --focus security --depth deep

Options

OptionDescription
@pathTarget path for analysis
--focusFocus on specific perspective: arch, security, perf, test
--depthAnalysis depth: quick, standard, deep

Depth Profiles

ProfileDescriptionEstimated Time
quickSurface scan, obvious issues~1 min
standardBalanced analysis (default)~3 min
deepComprehensive analysis, edge cases~5 min

4 Perspectives

PerspectiveAnalysis ContentKey Metrics
ArchitectureStructure, coupling, SOLID, DRYStructure score (0-100)
SecurityOWASP Top 10, input validation, secretsRisk score (0-100)
PerformanceO(n) complexity, N+1, caching, memoryEfficiency score (0-100)
TestingCoverage, edge cases, mockingCoverage score (0-100)

Synthesis Report

Integrated report generated after 4-perspective analysis:

markdown
## Cross-Perspective Insights

| Finding | Perspectives | Priority |
|---------|--------------|----------|
| SQL injection + Untested | Security + Testing | CRITICAL |
| N+1 query + High coupling | Performance + Architecture | HIGH |

## Correlation Matrix

              Arch    Sec     Perf    Test
Architecture    -     LOW     HIGH    MED
Security       LOW     -      LOW     HIGH
Performance   HIGH    LOW      -      MED
Testing        MED    HIGH    MED      -

Parallel Execution

4 subagents execute in parallel with a single message:

Single Message:
  - Task("Architecture analysis", run_in_background: true)
  - Task("Security analysis", run_in_background: true)
  - Task("Performance analysis", run_in_background: true)
  - Task("Testing analysis", run_in_background: true)

→ Collect results with TaskOutput
→ Generate Synthesis integrated report

/jikime:refactor

DDD methodology refactoring

ItemContent
DescriptionApply clean code principles with behavior preservation
Contextdev.md
Standalone Use⚠️ Medium - Partial overlap with 2-run DDD

Usage

bash
# Refactor specific file
/jikime:refactor @src/services/order.ts

# Refactor with specific pattern
/jikime:refactor @src/utils/ --pattern extract-function

# Safe mode (additional tests)
/jikime:refactor @src/core/ --safe

# Preview
/jikime:refactor @src/auth/ --dry-run

Options

OptionDescription
@pathFile to refactor
--patternPattern: extract-function, remove-duplication
--safeAdditional characterization tests
--dry-runPreview without applying

DDD Approach

ANALYZE → PRESERVE → IMPROVE

1. ANALYZE: Understand current behavior
2. PRESERVE: Generate characterization tests
3. IMPROVE: Apply refactoring
4. VERIFY: Confirm tests pass

vs 2-run

Featurerefactor2-run
SPEC-based
DDD cycle
Quality gates
Git PR management
Use CaseAd-hoc refactoringSPEC-based implementation

Recommendation: Use 2-run with SPEC workflow, use refactor for quick refactoring only


/jikime:security

Security audit

ItemContent
DescriptionOWASP Top 10, dependency scan, secret detection
Contextreview.md
Standalone Use✅ High - Can run independently anytime

Usage

bash
# Full security audit
/jikime:security

# Scan specific path
/jikime:security @src/api/

# Dependency audit only
/jikime:security --deps

# Secret scan only
/jikime:security --secrets

# OWASP check only
/jikime:security --owasp

Options

OptionDescription
[path]Target path
--depsDependency vulnerability scan
--secretsDetect hardcoded secrets
--owaspOWASP Top 10 check
--fixAuto-fix when possible

OWASP Top 10 Checks

#VulnerabilityDetection Target
1InjectionSQL, NoSQL, Command
2Broken AuthPassword handling
3Data ExposureHardcoded secrets
4XSSinnerHTML, dangerouslySetInnerHTML
5SSRFUnvalidated URLs
6AuthorizationMissing permission checks

Severity Levels

LevelAction
CRITICALImmediate fix required
HIGHFix before deployment
MEDIUMFix as soon as possible
LOWReview and decide

Generator Commands

Commands for skill and code generation.

/jikime:skill-create

General-purpose Claude Code skill generator

ItemContent
DescriptionGenerate various types of specialized skills with Progressive Disclosure pattern
TypeGenerator
Context-
MCPContext7 (documentation lookup)

Usage

bash
# Generate language expert skill
/jikime:skill-create --type lang --name rust

# Generate platform integration skill
/jikime:skill-create --type platform --name firebase

# Generate domain expert skill
/jikime:skill-create --type domain --name security

# Generate workflow skill
/jikime:skill-create --type workflow --name ci-cd

# Generate library skill
/jikime:skill-create --type library --name prisma

# Generate framework skill
/jikime:skill-create --type framework --name remix

# Enhance existing skill
/jikime:skill-create --type lang --name python --enhance-only

Options

OptionDescription
--typeSkill type: lang, platform, domain, workflow, library, framework
--nameSkill name
--enhance-onlyEnhance existing skill only (no new creation)

Generated Structure by Type

TypeGenerated FilesUse Case
langSKILL.md + examples.md + reference.mdLanguage expert
platformSKILL.md + setup.md + reference.mdPlatform integration
domainSKILL.md + patterns.md + examples.mdDomain expert
workflowSKILL.md + steps.md + examples.mdWorkflow
librarySKILL.md + examples.md + reference.mdLibrary
frameworkSKILL.md + patterns.md + upgrade.mdFramework

Detailed documentation: skill-create.md


/jikime:migration-skill

Migration-specific skill generator

ItemContent
DescriptionGenerate specialized skills for legacy→modern framework migration
TypeGenerator
Context-
MCPContext7 (migration guide lookup)

Usage

bash
# Generate migration skill from CRA to Next.js
/jikime:migration-skill --from cra --to nextjs

# Generate migration skill from Vue to Nuxt
/jikime:migration-skill --from vue --to nuxt

# Enhance existing skill
/jikime:migration-skill --from angular --to react --enhance-only

Options

OptionDescription
--fromSource framework: cra, vue, angular, svelte, jquery, php
--toTarget framework: nextjs, nuxt, react, vue
--enhance-onlyEnhance existing skill only

Detailed documentation: migration-skill.md


Migration Workflow

Workflow for migrating legacy projects to Next.js 16.

/jikime:migrate

Migration unified command

ItemContent
DescriptionMigrate legacy frontend to Next.js 16 App Router
TypeWorkflow
TargetVue.js, React CRA, Angular, Svelte, etc.

Workflow Overview

/jikime:migrate-0-discover   → Step 0: Source discovery

/jikime:migrate-1-analyze    → Step 1: Detailed analysis

/jikime:migrate-2-plan       → Step 2: Plan establishment

/jikime:migrate-3-execute    → Step 3: Execution

/jikime:migrate-4-verify     → Step 4: Verification

Or

/jikime:migrate [project]    → Full automation

Sub-Commands

Sub-CommandDescriptionPrerequisites
planGenerate migration planas_is_spec.md
skillGenerate project skillmigration_plan.md
runExecute migrationSKILL.md

Usage

bash
# Step-by-Step
/jikime:migrate-1-analyze "./my-vue-app"
/jikime:migrate plan my-vue-app
/jikime:migrate skill my-vue-app
/jikime:migrate run my-vue-app --output ./migrated

# Full automation
/jikime:migrate my-vue-app --loop --output ./migrated

# Generate whitepaper
/jikime:migrate run my-vue-app --whitepaper-report --client "ABC Corp"

Options

OptionDescription
--artifacts-outputMigration artifacts directory
--outputMigrated project output directory
--loopEnable autonomous loop
--max NMaximum iterations
--strategyStrategy: incremental, big-bang
--whitepaper-reportGenerate Post-Migration whitepaper
--clientClient company name
--langWhitepaper language: ko, en, ja, zh

Target Stack

TechnologyVersion
FrameworkNext.js 16 (App Router)
LanguageTypeScript 5.x
StylingTailwind CSS 4.x
UI Componentsshadcn/ui
Iconslucide-react
StateZustand

Command Comparison Matrix

Use Case Guide

SituationRecommended Command
Starting new project0-project1-plan2-run3-sync
Quick feature implementation/jikime:jarvis "description"
Fix build errors/jikime:build-fix
Pre-PR comprehensive verification/jikime:verify pre-pr
Security check/jikime:security
Multi-perspective analysis/jikime:perspective @path
Architecture review/jikime:architect
Code refactoring (without SPEC)/jikime:refactor @path
Code refactoring (SPEC-based)/jikime:1-plan/jikime:2-run
Run tests (unit/integration)/jikime:test
Run tests (E2E)/jikime:e2e
Iterative error fixing/jikime:loop "description"
Learn codebase/jikime:learn
Architecture documentation/jikime:codemap all
Dead code cleanup/jikime:cleanup scan/jikime:cleanup remove --safe
Document update (quick)/jikime:docs
Document sync (SPEC-based)/jikime:3-sync
Legacy migration/jikime:migrate

Overlap Analysis

Command ACommand BOverlap AreaRecommendation
docs3-syncDocument updateSPEC-based: 3-sync, Quick update: docs
refactor2-runDDD refactoringSPEC-based: 2-run, Ad-hoc: refactor
teste2eTest executionUnit/integration: test, E2E: e2e

Version Information

CommandVersionLast Updated
0-project1.0.02026-01-22
1-plan1.0.02026-01-22
2-run1.0.02026-01-22
3-sync2.0.02026-01-22
jarvis1.0.02026-01-22
test1.0.02026-01-22
loop1.0.02026-01-22
verify2.0.02026-01-26
architect1.0.0-
build-fix1.0.0-
cleanup1.0.02026-01-25
codemap1.0.02026-01-25
docs1.0.0-
e2e1.0.0-
learn1.0.0-
perspective1.0.02026-01-25
refactor1.0.0-
security1.0.0-
skill-create1.0.02026-01-26
migration-skill1.0.02026-01-26
migrate1.4.5-

Version: 1.3.0 Last Updated: 2026-01-26 Changelog:

  • v1.3.0: Added Generator Commands section (skill-create, migration-skill)
  • v1.2.0: Added verify (Adversarial Review), perspective (Multi-Perspective Analysis) commands
  • v1.1.0: Added cleanup, codemap commands

Released under the MIT License.