@nahisaho/shikigami 1.42.0 → 1.44.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 +99 -1
  2. package/CHANGELOG.md +24 -0
  3. package/package.json +1 -1
package/AGENTS.md CHANGED
@@ -721,6 +721,104 @@ projects/pjXXXXX_Name_YYYYMMDD/
721
721
 
722
722
  ---
723
723
 
724
+ ## Information Conflict Handling
725
+
726
+ ```
727
+ WHEN: Multiple sources provide conflicting information on the same fact
728
+ DO:
729
+ 1. Mark the fact with "(?)" in the report
730
+ 2. Note all conflicting values with their sources
731
+ 3. Identify the most credible source based on Credibility Scoring
732
+ 4. Add conflicting facts to "Information Conflicts" section at report end
733
+ ```
734
+
735
+ **Conflict Notation Format**:
736
+ ```
737
+ [Fact]: [Value](?)
738
+ - Source A ([Name]): [Value A]
739
+ - Source B ([Name]): [Value B]
740
+ - Source C ([Name]): [Value C]
741
+ → Most credible: [Source] ([Reason])
742
+ ```
743
+
744
+ **Example**:
745
+ ```
746
+ 市場規模: 500億円(?)
747
+ - Source A (日経新聞): 500億円
748
+ - Source B (業界団体レポート): 480億円
749
+ - Source C (調査会社X): 520億円
750
+ → Most credible: 日経新聞 (Major media, published 2025-12)
751
+ ```
752
+
753
+ **Report Section Template**:
754
+ ```markdown
755
+ ## Information Conflicts
756
+
757
+ | Fact | Values | Most Credible | Reason |
758
+ |------|--------|---------------|--------|
759
+ | 市場規模 | 480-520億円 | 500億円 (日経) | Major media, latest data |
760
+ | 成長率 | 3.2%-4.1% | 3.5% (業界団体) | Primary source |
761
+ ```
762
+
763
+ **Conflict Severity Levels**:
764
+ | Deviation | Severity | Action |
765
+ |-----------|----------|--------|
766
+ | <5% | Low | Note in footnote |
767
+ | 5-20% | Medium | Mark with (?), add to Conflicts section |
768
+ | >20% | High | Mark with (??), investigate further, consider excluding unreliable sources |
769
+
770
+ ### Content/Opinion Conflicts
771
+
772
+ ```
773
+ WHEN: Sources provide contradictory statements or opinions on the same topic
774
+ DO:
775
+ 1. Mark with "(⚡)" for factual contradictions
776
+ 2. Mark with "(💭)" for opinion/interpretation differences
777
+ 3. Present all viewpoints with their sources
778
+ 4. Add to "Content Conflicts" section at report end
779
+ ```
780
+
781
+ **Conflict Type Markers**:
782
+ | Marker | Type | Description |
783
+ |--------|------|-------------|
784
+ | (?) | Numeric | Values differ by 5-20% |
785
+ | (??) | Numeric (High) | Values differ by >20% |
786
+ | (⚡) | Factual | Contradictory facts/statements |
787
+ | (💭) | Opinion | Different interpretations/predictions |
788
+
789
+ **Example (Factual Contradiction)**:
790
+ ```
791
+ 原因(⚡):
792
+ - Source A (調査報告書): 「システム障害が主因」
793
+ - Source B (業界紙): 「人的ミスが主因」
794
+ → No consensus - both viewpoints presented
795
+ ```
796
+
797
+ **Example (Opinion/Interpretation Difference)**:
798
+ ```
799
+ 将来予測(💭):
800
+ - Source A (アナリストX): 「市場は2030年まで拡大する」
801
+ - Source B (業界団体): 「市場は縮小傾向にある」
802
+ → Different interpretations noted - reader should evaluate
803
+ ```
804
+
805
+ **Content Conflicts Section Template**:
806
+ ```markdown
807
+ ## Content Conflicts
808
+
809
+ ### Factual Contradictions (⚡)
810
+ | Topic | Viewpoint A | Viewpoint B | Sources |
811
+ |-------|-------------|-------------|----------|
812
+ | 障害原因 | システム障害 | 人的ミス | 調査報告書 vs 業界紙 |
813
+
814
+ ### Opinion Differences (💭)
815
+ | Topic | Viewpoint A | Viewpoint B | Sources |
816
+ |-------|-------------|-------------|----------|
817
+ | 市場予測 | 拡大継続 | 縮小傾向 | アナリストX vs 業界団体 |
818
+ ```
819
+
820
+ ---
821
+
724
822
  ## Academic Search Rules
725
823
 
726
824
  ```
@@ -773,4 +871,4 @@ DO: Auto-detect Shift_JIS/EUC-JP/ISO-2022-JP and convert to UTF-8
773
871
  ---
774
872
 
775
873
  **Last Updated**: 2026-01-28
776
- **Version**: 1.42.0
874
+ **Version**: 1.44.0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ 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.44.0] - 2026-01-28
9
+
10
+ ### Added
11
+
12
+ - **AGENTS.md: Content/Opinion Conflict Handling**
13
+ - New markers for non-numeric conflicts:
14
+ - `(⚡)` for factual contradictions (e.g., different causes stated)
15
+ - `(💭)` for opinion/interpretation differences (e.g., predictions)
16
+ - Unified Conflict Type Markers table: (?), (??), (⚡), (💭)
17
+ - Content Conflicts section template with Factual/Opinion subsections
18
+ - Examples for both factual contradictions and opinion differences
19
+
20
+ ## [1.43.0] - 2026-01-28
21
+
22
+ ### Added
23
+
24
+ - **AGENTS.md: Information Conflict Handling**
25
+ - New section for handling conflicting information across sources
26
+ - Mark facts with "(?)\" when sources disagree
27
+ - Conflict notation format with source comparison
28
+ - "Information Conflicts" table template for reports
29
+ - Conflict severity levels: Low (<5%), Medium (5-20%), High (>20%)
30
+ - High severity "(??)" marking for >20% deviations
31
+
8
32
  ## [1.42.0] - 2026-01-28
9
33
 
10
34
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/shikigami",
3
- "version": "1.42.0",
3
+ "version": "1.44.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",