@nahisaho/shikigami 1.35.0 → 1.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/AGENTS.md +81 -24
  2. package/CHANGELOG.md +21 -0
  3. package/package.json +1 -1
package/AGENTS.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  | Item | Value |
10
10
  |------|-------|
11
- | Version | 1.35.0 |
11
+ | Version | 1.37.0 |
12
12
  | Agent Skills | 4 |
13
13
  | MCP Tools | 11 |
14
14
  | Frameworks | 53 |
@@ -24,9 +24,13 @@
24
24
 
25
25
  ```
26
26
  WHEN: Received a research, investigation, or analysis request
27
- DO: Always execute `npx shikigami new <ProjectName>` before starting research
27
+ DO:
28
+ - If user says "project created" or "created project directory":
29
+ → Call set_project(autoDetect: true) and proceed to Phase 1
30
+ - Otherwise:
31
+ → Execute `npx shikigami new <ProjectName>` before starting research
28
32
  THEN: Call set_project(autoDetect: true) to activate the project
29
- FORBIDDEN: Web search, using search tools, or gathering information before project creation
33
+ FORBIDDEN: Web search, using search tools, or gathering information before project activation
30
34
  ```
31
35
 
32
36
  ### Prohibition 2: save_research Required After search/visit
@@ -72,7 +76,22 @@ save_prompt(content: <user_input>, type: "original"|"answer"|"instruction"|"feed
72
76
 
73
77
  **CRITICAL: Follow this order EXACTLY. Do NOT skip steps.**
74
78
 
75
- When receiving a research request, strictly follow this order:
79
+ ### Case A: User already created project directory
80
+
81
+ When user says "project created", "created project", or similar:
82
+
83
+ 1. **Set Context** → `set_project(autoDetect: true)`
84
+ 2. **Save Original Prompt** → `save_prompt(type: "original")`
85
+ 3. **Prompt Optimization** (Phase 1) → Structure into 6 elements → Display → **WAIT for user approval**
86
+ 4. **Purpose Discovery** (Phase 2) → Discover true purpose through 1Q1A dialogue
87
+ 5. **Deep Research** (Phase 3) → Think→Search→Report→Action cycle
88
+ 6. **Framework Analysis** (Phase 4) → Apply SWOT/3C/PEST etc.
89
+ 7. **Report Generation** (Phase 5) → Create structured report
90
+ 8. **Complete** (Phase 6) → Update manifest.yaml, verify deliverables
91
+
92
+ ### Case B: New research request (no project yet)
93
+
94
+ When receiving a new research request:
76
95
 
77
96
  1. **ASK Project Name** → "What project name would you like?" → **WAIT for user response**
78
97
  2. **Create Project** → `npx shikigami new <ProjectName>` (only after user confirms)
@@ -87,8 +106,8 @@ When receiving a research request, strictly follow this order:
87
106
  11. **Complete** (Phase 6) → Update manifest.yaml, verify deliverables
88
107
 
89
108
  **MANDATORY APPROVAL POINTS** (must wait for user before proceeding):
90
- - Step 1: Project name confirmation
91
- - Step 6: Structured prompt approval
109
+ - Case B Step 1: Project name confirmation
110
+ - Phase 1 (both cases): Structured prompt approval
92
111
 
93
112
  ---
94
113
 
@@ -96,23 +115,27 @@ When receiving a research request, strictly follow this order:
96
115
 
97
116
  ### Phase 0: Project Initialization
98
117
 
99
- **THIS PHASE REQUIRES USER APPROVAL - DO NOT SKIP**
100
-
101
118
  ```
102
119
  WHEN: Received research request
103
120
  DO:
104
- 1. STOP and ask user: "What project name would you like? (CamelCase, alphanumeric only)"
105
- 2. WAIT for user response (do NOT proceed without approval)
106
- 3. After user confirms name: Execute npx shikigami new <ProjectName>
107
- 4. Execute set_project(autoDetect: true)
108
- 5. Save original prompt with save_prompt(type: "original")
121
+ Case A - User says "project created" / "created project directory":
122
+ 1. Execute set_project(autoDetect: true)
123
+ 2. Save original prompt with save_prompt(type: "original")
124
+ 3. Proceed to Phase 1 immediately
125
+
126
+ Case B - New request (no project mentioned):
127
+ 1. STOP and ask user: "What project name would you like? (CamelCase, alphanumeric only)"
128
+ 2. WAIT for user response (do NOT proceed without approval)
129
+ 3. After user confirms name: Execute npx shikigami new <ProjectName>
130
+ 4. Execute set_project(autoDetect: true)
131
+ 5. Save original prompt with save_prompt(type: "original")
109
132
  OUTPUT: projects/pjXXXXX_ProjectName_YYYYMMDD/
110
133
  ```
111
134
 
112
135
  **CRITICAL**:
113
- - You MUST ask user for project name confirmation
114
- - You MUST NOT create project without user approval
115
- - You MUST NOT skip to research phase
136
+ - If user indicates project is already created → skip to set_project and proceed
137
+ - If new request → MUST ask user for project name confirmation
138
+ - You MUST NOT skip to research phase without project activation
116
139
 
117
140
  **Naming Rules**:
118
141
  - Folder: `pjXXXXX_ProjectName_YYYYMMDD`
@@ -207,22 +230,56 @@ OUTPUT: Framework application results, analysis insights, recommended actions
207
230
  | Trigger Keywords | Recommended Frameworks |
208
231
  |------------------|------------------------|
209
232
  | strategy, strengths, weaknesses, opportunities, threats | SWOT, PEST, 5Forces, 3C |
210
- | matching, fit, partnership | Matching Matrix |
211
- | roadmap, plan, phases | Technology Roadmap |
212
- | customer, user, persona | Persona Analysis, STP |
233
+ | matching, fit, partnership, collaboration | Matching Matrix |
234
+ | roadmap, plan, phases, timeline | Technology Roadmap |
235
+ | customer, user, persona, segment | Persona Analysis, STP, Customer Journey |
236
+ | pricing, price, cost, value | 4P, Value-Based Pricing, Price Sensitivity |
237
+ | market entry, go-to-market, launch | AARRR, GTM Strategy, Ansoff Matrix |
238
+ | competitive, differentiation, positioning | Blue Ocean, Positioning Map, Competitive Analysis |
239
+ | process, efficiency, workflow, optimization | Value Chain, ECRS, Business Process |
240
+ | decision, prioritization, evaluation | Decision Matrix, Eisenhower, Weighted Scoring |
241
+ | business model, revenue, monetization | Business Model Canvas, Lean Canvas, Revenue Model |
242
+ | root cause, problem, issue, why | Fishbone (Ishikawa), 5 Whys, Issue Tree |
243
+ | organization, team, structure, roles | McKinsey 7S, RACI, Org Design |
244
+ | risk, uncertainty, mitigation | Risk Matrix, FMEA, Scenario Planning |
245
+ | innovation, idea, creativity | Design Thinking, SCAMPER, Brainstorming |
246
+ | growth, scale, expansion | BCG Matrix, GE Matrix, Product Lifecycle |
247
+
248
+ **CRITICAL**: Select framework based on research PURPOSE, not just keywords. When multiple frameworks apply, prioritize:
249
+ 1. Frameworks that directly answer the user's core question
250
+ 2. Frameworks with available data from Phase 3 research
251
+ 3. Simpler frameworks over complex ones when depth is similar
213
252
 
214
253
  ### Phase 5: Report Generation
215
254
 
216
255
  ```
217
256
  WHEN: Phase 4 completed, 1+ framework applied
218
257
  DO:
219
- 1. Determine report structure (research report/proposal/Qiita article etc.)
220
- 2. Write content (with hallucination prevention check)
221
- 3. Organize citations and references (URL required for all data)
222
- 4. Quality verification (numerical consistency, executive summary sync)
258
+ 1. Select appropriate report template (see Template Selection below)
259
+ 2. Write content following template structure
260
+ 3. Hallucination prevention check (verify all facts against sources)
261
+ 4. Organize citations and references (URL required for all data)
262
+ 5. Quality verification (numerical consistency, executive summary sync)
223
263
  OUTPUT: Completed report (under reports/), reference list
224
264
  ```
225
265
 
266
+ **Template Selection Criteria**:
267
+ | Report Type | Template | Use When |
268
+ |-------------|----------|----------|
269
+ | Research Report | research-report | General investigation, market research, technology assessment |
270
+ | Proposal | proposal | Recommendations, action plans, business cases |
271
+ | Qiita Article | qiita-article | Technical content for publication |
272
+ | Executive Summary | executive-summary | Brief overview for decision makers |
273
+ | Comparison Report | comparison-report | Product/service/technology comparisons |
274
+ | Feasibility Study | feasibility-study | Viability assessment, go/no-go decisions |
275
+ | Competitive Analysis | competitive-analysis | Competitor landscape, positioning |
276
+ | Technical Report | technical-report | Deep technical investigation |
277
+
278
+ **CRITICAL**: Always use `shikigami-report-template` skill to load the appropriate template BEFORE writing. Template provides:
279
+ - Required sections and structure
280
+ - Formatting guidelines
281
+ - Quality checklist
282
+
226
283
  ---
227
284
 
228
285
  ## MCP Tools List
@@ -435,4 +492,4 @@ DO: Auto-detect Shift_JIS/EUC-JP/ISO-2022-JP and convert to UTF-8
435
492
  ---
436
493
 
437
494
  **Last Updated**: 2026-01-28
438
- **Version**: 1.33.0
495
+ **Version**: 1.37.0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,27 @@ All notable changes to SHIKIGAMI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.37.0] - 2026-01-28
9
+
10
+ ### Added
11
+
12
+ - **AGENTS.md: Enhanced framework selection criteria**
13
+ - Expanded from 4 to 15 framework categories
14
+ - Added: pricing, market entry, competitive, process, decision, business model, root cause, organization, risk, innovation, growth
15
+ - Added CRITICAL note for framework selection prioritization
16
+
17
+ - **AGENTS.md: Report template selection guidance**
18
+ - Added Template Selection Criteria table (8 report types)
19
+ - Added instruction to use `shikigami-report-template` skill before writing
20
+ - Updated Phase 5 DO steps to include template selection
21
+
22
+ ### Changed
23
+
24
+ - **AGENTS.md: Case A workflow for pre-created projects** (from v1.36.0)
25
+ - Added recognition of "project created" statements
26
+ - Split workflow into Case A (project exists) and Case B (new request)
27
+ - Phase 0 now handles both scenarios
28
+
8
29
  ## [1.35.0] - 2026-01-28
9
30
 
10
31
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.35.0",
3
+ "version": "1.37.0",
4
4
  "description": "GitHub Copilot Agent Skills for Deep Research & Consulting - AI-Powered Research Assistant with 50+ Consulting Frameworks",
5
5
  "keywords": [
6
6
  "github-copilot",