@nahisaho/shikigami 1.41.0 โ 1.42.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 +70 -12
- package/CHANGELOG.md +17 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -32,7 +32,7 @@ VIOLATION = WORKFLOW FAILURE
|
|
|
32
32
|
|
|
33
33
|
| Item | Value |
|
|
34
34
|
|------|-------|
|
|
35
|
-
| Version | 1.
|
|
35
|
+
| Version | 1.42.0 |
|
|
36
36
|
| Agent Skills | 4 |
|
|
37
37
|
| MCP Tools | 11 |
|
|
38
38
|
| Frameworks | 53 |
|
|
@@ -146,14 +146,53 @@ FORBIDDEN: Web search, using search tools, or gathering information before proje
|
|
|
146
146
|
|
|
147
147
|
### Prohibition 3: save_research Required After search/visit
|
|
148
148
|
|
|
149
|
+
**๐จ๐จ๐จ EVERY search/visit MUST be followed by save_research ๐จ๐จ๐จ**
|
|
150
|
+
|
|
149
151
|
```
|
|
150
152
|
WHEN: Executed search or visit MCP tool
|
|
151
|
-
DO: IMMEDIATELY call save_research MCP tool (within the
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
153
|
+
DO: IMMEDIATELY call save_research MCP tool (within the SAME response, not later)
|
|
154
|
+
|
|
155
|
+
MANDATORY PATTERN - NO EXCEPTIONS:
|
|
156
|
+
search(...) โ save_research(...) โ next action
|
|
157
|
+
visit(...) โ save_research(...) โ next action
|
|
158
|
+
|
|
159
|
+
EXAMPLE 1 (Search):
|
|
160
|
+
1. search(query: ["AIๅธๅ ดๅๅ", "AI market trends"])
|
|
161
|
+
2. save_research(
|
|
162
|
+
content: "<ๆค็ดข็ตๆใฎๅ
จๆใใใใซ>",
|
|
163
|
+
source: "search",
|
|
164
|
+
query: "AIๅธๅ ดๅๅ"
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
EXAMPLE 2 (Visit):
|
|
168
|
+
1. visit(url: "https://example.com/article")
|
|
169
|
+
2. save_research(
|
|
170
|
+
content: "<ใใผใธๅ
ๅฎนใฎๅ
จๆใใใใซ>",
|
|
171
|
+
source: "visit",
|
|
172
|
+
query: "https://example.com/article"
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
FORBIDDEN (IMMEDIATE VIOLATION):
|
|
176
|
+
- Calling search then another search without save_research in between
|
|
177
|
+
- Calling visit then summarizing without save_research first
|
|
178
|
+
- Proceeding to analysis without saving raw data
|
|
179
|
+
- "I'll save it later" - NO! Save IMMEDIATELY
|
|
180
|
+
|
|
181
|
+
CONSEQUENCE: Research data will be lost, workflow corrupted, unable to cite sources
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
**CORRECT FLOW**:
|
|
185
|
+
```
|
|
186
|
+
Agent: search(query: [...])
|
|
187
|
+
โ [็ตๆใๅไฟก]
|
|
188
|
+
โ save_research(content: <ๅ
จ็ตๆ>, source: "search", query: <query>)
|
|
189
|
+
โ "ๆค็ดข็ตๆใไฟๅญใใพใใใๆฌกใซ..."
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
**INCORRECT FLOW (VIOLATION)**:
|
|
193
|
+
```
|
|
194
|
+
Agent: search(query: [...])
|
|
195
|
+
โ "ๆค็ดข็ตๆใซใใใจ..." โ โ save_research ใๅผใใงใใชใ๏ผ
|
|
157
196
|
```
|
|
158
197
|
|
|
159
198
|
### Prohibition 4: save_prompt Required After User Input
|
|
@@ -335,7 +374,7 @@ NEXT: Phase 1 (Prompt Optimization) - NOT Phase 3 (Search)
|
|
|
335
374
|
|
|
336
375
|
### Phase 1: Prompt Optimization
|
|
337
376
|
|
|
338
|
-
|
|
377
|
+
** THIS PHASE IS MANDATORY - NEVER SKIP **
|
|
339
378
|
|
|
340
379
|
```
|
|
341
380
|
WHEN: Phase 0 completed (project created and set_project called)
|
|
@@ -423,15 +462,34 @@ DO:
|
|
|
423
462
|
LOOP:
|
|
424
463
|
1. Think: Analyze knowledge gaps
|
|
425
464
|
2. Search: search(query: ["Japanese query", "English query"])
|
|
426
|
-
3. IMMEDIATELY: save_research(content: <search_results>, source: "search", query: <query>)
|
|
465
|
+
3. ๐จ IMMEDIATELY: save_research(content: <FULL search_results>, source: "search", query: <query>)
|
|
466
|
+
โ Do NOT proceed without this step!
|
|
427
467
|
4. Visit: visit(url: <target_url>)
|
|
428
|
-
5. IMMEDIATELY: save_research(content: <page_content>, source: "visit", query: <url>)
|
|
468
|
+
5. ๐จ IMMEDIATELY: save_research(content: <FULL page_content>, source: "visit", query: <url>)
|
|
469
|
+
โ Do NOT proceed without this step!
|
|
429
470
|
6. Report: Organize collected information
|
|
430
471
|
7. Action: Determine if additional search needed
|
|
431
472
|
OUTPUT: Collected information summary, source list (URL + credibility)
|
|
432
473
|
```
|
|
433
474
|
|
|
434
|
-
|
|
475
|
+
**๐จ CRITICAL - save_research is MANDATORY after EVERY search/visit**:
|
|
476
|
+
- Steps 3 and 5 are NOT optional
|
|
477
|
+
- You MUST call save_research IMMEDIATELY after each search/visit
|
|
478
|
+
- Do NOT analyze or summarize before saving raw data
|
|
479
|
+
- Do NOT call multiple searches without saving each one
|
|
480
|
+
|
|
481
|
+
**CORRECT Phase 3 Flow**:
|
|
482
|
+
```
|
|
483
|
+
search(query: [...])
|
|
484
|
+
โ
|
|
485
|
+
save_research(content: <ๅ
จ็ตๆ>, source: "search", ...) โ ๅฟ
้ ๏ผ
|
|
486
|
+
โ
|
|
487
|
+
visit(url: ...)
|
|
488
|
+
โ
|
|
489
|
+
save_research(content: <ๅ
จๅ
ๅฎน>, source: "visit", ...) โ ๅฟ
้ ๏ผ
|
|
490
|
+
โ
|
|
491
|
+
[ๅๆใปๆฌกใฎใขใฏใทใงใณ]
|
|
492
|
+
```
|
|
435
493
|
|
|
436
494
|
**Search Rules**:
|
|
437
495
|
- Parallel JP/EN search required: `["Japanese query", "English query"]`
|
|
@@ -715,4 +773,4 @@ DO: Auto-detect Shift_JIS/EUC-JP/ISO-2022-JP and convert to UTF-8
|
|
|
715
773
|
---
|
|
716
774
|
|
|
717
775
|
**Last Updated**: 2026-01-28
|
|
718
|
-
**Version**: 1.
|
|
776
|
+
**Version**: 1.42.0
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ 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.42.0] - 2026-01-28
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **AGENTS.md: Enforce save_research after every search/visit**
|
|
13
|
+
- Prohibition 3: Added ๐จ๐จ๐จ warning header
|
|
14
|
+
- Added MANDATORY PATTERN section with clear flow
|
|
15
|
+
- Added detailed EXAMPLE 1 (Search) and EXAMPLE 2 (Visit) with full parameters
|
|
16
|
+
- Added CORRECT/INCORRECT flow examples
|
|
17
|
+
- Added explicit prohibition against "I'll save it later"
|
|
18
|
+
|
|
19
|
+
- **AGENTS.md: Phase 3 save_research enforcement**
|
|
20
|
+
- Added ๐จ markers to steps 3 and 5
|
|
21
|
+
- Added "Do NOT proceed without this step!" warnings
|
|
22
|
+
- Added CORRECT Phase 3 Flow diagram
|
|
23
|
+
- Expanded CRITICAL section with specific prohibitions
|
|
24
|
+
|
|
8
25
|
## [1.41.0] - 2026-01-28
|
|
9
26
|
|
|
10
27
|
### Added
|
package/package.json
CHANGED