@nahisaho/shikigami 1.34.0 → 1.35.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.
- package/AGENTS.md +40 -19
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SHIKIGAMI - Deep Research Agent Skills v1.
|
|
1
|
+
# SHIKIGAMI - Deep Research Agent Skills v1.35.0
|
|
2
2
|
|
|
3
3
|
> Knowledge for AI Coding Agents — Triggers and Actions defined with WHEN/DO syntax
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
| Item | Value |
|
|
10
10
|
|------|-------|
|
|
11
|
-
| Version | 1.
|
|
11
|
+
| Version | 1.35.0 |
|
|
12
12
|
| Agent Skills | 4 |
|
|
13
13
|
| MCP Tools | 11 |
|
|
14
14
|
| Frameworks | 53 |
|
|
@@ -70,20 +70,25 @@ save_prompt(content: <user_input>, type: "original"|"answer"|"instruction"|"feed
|
|
|
70
70
|
|
|
71
71
|
## Workflow Execution Order
|
|
72
72
|
|
|
73
|
+
**CRITICAL: Follow this order EXACTLY. Do NOT skip steps.**
|
|
74
|
+
|
|
73
75
|
When receiving a research request, strictly follow this order:
|
|
74
76
|
|
|
75
|
-
1. **
|
|
76
|
-
2. **Create Project** → `npx shikigami new <ProjectName>`
|
|
77
|
+
1. **ASK Project Name** → "What project name would you like?" → **WAIT for user response**
|
|
78
|
+
2. **Create Project** → `npx shikigami new <ProjectName>` (only after user confirms)
|
|
77
79
|
3. **Set Context** → `set_project(autoDetect: true)`
|
|
78
80
|
4. **Save Original Prompt** → `save_prompt(type: "original")`
|
|
79
81
|
5. **Verify Folder** → Confirm `projects/pjXXXXX_<Name>_YYYYMMDD/` exists
|
|
80
|
-
6. **
|
|
81
|
-
7. **
|
|
82
|
-
8. **
|
|
83
|
-
9. **
|
|
84
|
-
10. **
|
|
85
|
-
11. **
|
|
86
|
-
|
|
82
|
+
6. **Prompt Optimization** (Phase 1) → Structure into 6 elements → Display → **WAIT for user approval**
|
|
83
|
+
7. **Purpose Discovery** (Phase 2) → Discover true purpose through 1Q1A dialogue
|
|
84
|
+
8. **Deep Research** (Phase 3) → Think→Search→Report→Action cycle
|
|
85
|
+
9. **Framework Analysis** (Phase 4) → Apply SWOT/3C/PEST etc.
|
|
86
|
+
10. **Report Generation** (Phase 5) → Create structured report
|
|
87
|
+
11. **Complete** (Phase 6) → Update manifest.yaml, verify deliverables
|
|
88
|
+
|
|
89
|
+
**MANDATORY APPROVAL POINTS** (must wait for user before proceeding):
|
|
90
|
+
- Step 1: Project name confirmation
|
|
91
|
+
- Step 6: Structured prompt approval
|
|
87
92
|
|
|
88
93
|
---
|
|
89
94
|
|
|
@@ -91,16 +96,24 @@ When receiving a research request, strictly follow this order:
|
|
|
91
96
|
|
|
92
97
|
### Phase 0: Project Initialization
|
|
93
98
|
|
|
99
|
+
**THIS PHASE REQUIRES USER APPROVAL - DO NOT SKIP**
|
|
100
|
+
|
|
94
101
|
```
|
|
95
102
|
WHEN: Received research request
|
|
96
103
|
DO:
|
|
97
|
-
1.
|
|
98
|
-
2.
|
|
99
|
-
3.
|
|
100
|
-
4.
|
|
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")
|
|
101
109
|
OUTPUT: projects/pjXXXXX_ProjectName_YYYYMMDD/
|
|
102
110
|
```
|
|
103
111
|
|
|
112
|
+
**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
|
|
116
|
+
|
|
104
117
|
**Naming Rules**:
|
|
105
118
|
- Folder: `pjXXXXX_ProjectName_YYYYMMDD`
|
|
106
119
|
- ProjectName: CamelCase, alphanumeric only (hyphens, spaces, Japanese characters prohibited)
|
|
@@ -108,17 +121,25 @@ OUTPUT: projects/pjXXXXX_ProjectName_YYYYMMDD/
|
|
|
108
121
|
|
|
109
122
|
### Phase 1: Prompt Optimization
|
|
110
123
|
|
|
124
|
+
**THIS PHASE IS MANDATORY - DO NOT SKIP**
|
|
125
|
+
|
|
111
126
|
```
|
|
112
127
|
WHEN: Phase 0 completed
|
|
113
128
|
DO:
|
|
114
|
-
1.
|
|
115
|
-
2. Display structured prompt
|
|
129
|
+
1. Analyze original prompt and structure into 6 elements (see table below)
|
|
130
|
+
2. Display structured prompt to user in formatted table
|
|
116
131
|
3. Save with save_prompt(type: "structured")
|
|
117
|
-
4.
|
|
118
|
-
5.
|
|
132
|
+
4. Ask user: "Please review and approve this structured prompt, or suggest modifications."
|
|
133
|
+
5. WAIT for user approval (do NOT proceed without approval)
|
|
134
|
+
6. Save approval/modifications with save_prompt(type: "approval" or "instruction")
|
|
119
135
|
OUTPUT: 6-element structured prompt (user approved)
|
|
120
136
|
```
|
|
121
137
|
|
|
138
|
+
**CRITICAL**:
|
|
139
|
+
- You MUST display the 6-element structured prompt
|
|
140
|
+
- You MUST wait for user approval before proceeding to Phase 2
|
|
141
|
+
- You MUST NOT skip prompt optimization
|
|
142
|
+
|
|
122
143
|
**6 Elements**:
|
|
123
144
|
| Element | Description |
|
|
124
145
|
|---------|-------------|
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.35.0] - 2026-01-28
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **AGENTS.md: Enforce mandatory approval points**
|
|
13
|
+
- Phase 0: Added explicit "ASK user" and "WAIT for response" instructions
|
|
14
|
+
- Phase 0: Added CRITICAL notes preventing skip without user approval
|
|
15
|
+
- Phase 1: Added "THIS PHASE IS MANDATORY - DO NOT SKIP" header
|
|
16
|
+
- Phase 1: Added explicit "WAIT for user approval" instruction
|
|
17
|
+
- Workflow: Added "MANDATORY APPROVAL POINTS" section listing required user confirmations
|
|
18
|
+
- Workflow: Changed "Decide Project Name" to "ASK Project Name" with explicit wait
|
|
19
|
+
|
|
8
20
|
## [1.34.0] - 2026-01-28
|
|
9
21
|
|
|
10
22
|
### Changed
|
package/package.json
CHANGED