@nahisaho/satori 0.5.0 → 0.5.2

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/bin/satori.js CHANGED
@@ -71,6 +71,7 @@ SATORI — Agent Skills for Science
71
71
  Usage:
72
72
  satori init [--force] [--dry-run] Install .github/ skills into current directory
73
73
  satori help Show this help message
74
+ satori --version, -v Show version number
74
75
 
75
76
  Options:
76
77
  --force Overwrite existing .github/ directory
@@ -78,6 +79,11 @@ Options:
78
79
  `);
79
80
  }
80
81
 
82
+ function showVersion() {
83
+ const pkg = require(path.join(PACKAGE_ROOT, 'package.json'));
84
+ console.log(pkg.version);
85
+ }
86
+
81
87
  switch (COMMAND) {
82
88
  case 'init':
83
89
  init();
@@ -88,6 +94,11 @@ switch (COMMAND) {
88
94
  case undefined:
89
95
  showHelp();
90
96
  break;
97
+ case '--version':
98
+ case '-v':
99
+ case 'version':
100
+ showVersion();
101
+ break;
91
102
  default:
92
103
  console.error(`Unknown command: ${COMMAND}`);
93
104
  showHelp();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nahisaho/satori",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "SATORI — Agent Skills for Science. GitHub Copilot Agent Skills collection for scientific data analysis.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -26,4 +26,4 @@
26
26
  "type": "git",
27
27
  "url": "https://github.com/nahisaho/satori.git"
28
28
  }
29
- }
29
+ }
@@ -12,6 +12,22 @@ description: |
12
12
  科学技術・学術論文の執筆を支援するスキル。ジャーナル形式に応じた構成テンプレート、
13
13
  セクション別の文章パターン、引用・図表参照の規約を提供する。
14
14
 
15
+ ## SATORI バージョン参照ルール
16
+
17
+ **重要**: 論文原稿内で SATORI のバージョンに言及する場合(Authors, Acknowledgements,
18
+ AI Disclosure 等)、バージョン番号をハードコードしてはならない。
19
+ 必ず `package.json` の `version` フィールドを読み取り、実際の値を使用すること。
20
+
21
+ ```
22
+ ✅ 正しい例: GitHub Copilot Agent (SATORI v0.5.1) ← package.json から取得
23
+ ❌ 誤った例: GitHub Copilot Agent (SATORI v0.2.0) ← 古いバージョンのハードコード
24
+ ```
25
+
26
+ 取得手順:
27
+ 1. ワークスペースの `package.json` を読み取る
28
+ 2. `version` フィールドの値を取得する
29
+ 3. 原稿内で `SATORI v{version}` の形式で記載する
30
+
15
31
  ## When to Use
16
32
 
17
33
  - 学術論文の草稿を作成するとき
@@ -357,7 +373,67 @@ We have revised the manuscript accordingly (page X, lines YY-ZZ).
357
373
  5. 本文中の該当箇所に画像を埋め込み、キャプションを生成
358
374
  ```
359
375
 
360
- ### 9. Supplementary Information 構成
376
+ ### 9. AI 使用開示 (AI Usage Disclosure)
377
+
378
+ 多くのジャーナルが生成 AI の使用開示を義務化している。
379
+ AI はオーサーシップの要件を満たさないため、**著者として記載しない**。
380
+
381
+ ```markdown
382
+ ## AI 使用開示の記載場所(ジャーナル別)
383
+
384
+ | ジャーナル | 記載場所 | ポリシー |
385
+ |---|---|---|
386
+ | Nature 系 | Methods セクション末尾 | 必須 (2023年〜) |
387
+ | Science 系 | Acknowledgements | 必須 |
388
+ | ACS 系 | Methods or Acknowledgements | 推奨 |
389
+ | IEEE 系 | Acknowledgements | 推奨 |
390
+ | Elsevier 系 | 専用 AI Disclosure セクション | 必須 (2024年〜) |
391
+ ```
392
+
393
+ #### AI 使用開示テンプレート
394
+
395
+ **注意**: バージョン番号は package.json から動的に取得すること。
396
+
397
+ ```markdown
398
+ ## Methods セクション末尾(Nature 系)
399
+
400
+ **Use of AI tools**: This study used GitHub Copilot Agent with SATORI
401
+ skills (v{package.json の version}) for [具体的な用途: data analysis /
402
+ figure generation / manuscript drafting / literature review].
403
+ All AI-generated content was reviewed and verified by the authors,
404
+ who take full responsibility for the content of this publication.
405
+
406
+ ## Acknowledgements(Science / ACS / IEEE 系)
407
+
408
+ The authors acknowledge the use of GitHub Copilot Agent with SATORI
409
+ skills (v{package.json の version}) for [具体的な用途].
410
+ All outputs were critically reviewed and validated by the authors.
411
+
412
+ ## AI Disclosure セクション(Elsevier 系)
413
+
414
+ During the preparation of this work, the authors used GitHub Copilot
415
+ Agent with SATORI skills (v{package.json の version}) for [具体的な用途].
416
+ After using this tool, the authors reviewed and edited the content as
417
+ needed and take full responsibility for the content of the publication.
418
+ ```
419
+
420
+ #### Authors セクションのルール
421
+
422
+ ```markdown
423
+ ## AI をオーサーに含める場合の注意
424
+
425
+ ❌ 禁止: AI ツールをオーサーとして記載してはならない
426
+ (ICMJE ガイドライン: オーサーシップには説明責任が必要)
427
+
428
+ ❌ 誤り:
429
+ Author A¹, GitHub Copilot Agent (SATORI v0.2.0)¹, Author B²
430
+
431
+ ✅ 正しい:
432
+ Author A¹*, Author B²
433
+ (AI 使用は Methods / Acknowledgements / AI Disclosure に記載)
434
+ ```
435
+
436
+ ### 10. Supplementary Information 構成
361
437
 
362
438
  ```markdown
363
439
  ## Supplementary Information テンプレート