@gitruck/cli 1.0.1 → 1.0.3

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 (32) hide show
  1. package/AGENT.md +13 -0
  2. package/LICENSE +21 -21
  3. package/README.en.md +626 -540
  4. package/README.md +624 -540
  5. package/contracts/README.md +14 -14
  6. package/contracts/handoff-contracts.json +10 -10
  7. package/dist/index.js +5271 -2009
  8. package/package.json +66 -66
  9. package/skills/gtrk-ai-drama/SKILL.md +221 -214
  10. package/skills/gtrk-cover/SKILL.md +93 -93
  11. package/skills/gtrk-cover/assets/workbench-template.html +955 -955
  12. package/skills/gtrk-cover/references/checklist.md +81 -81
  13. package/skills/gtrk-cover/references/layout-recipes.md +337 -337
  14. package/skills/gtrk-cover/references/prompt-templates.md +119 -119
  15. package/skills/gtrk-cover/references/workbench-guide.md +99 -99
  16. package/skills/gtrk-long2short/SKILL.md +71 -68
  17. package/skills/gtrk-matrix/SKILL.md +55 -15
  18. package/skills/gtrk-mg/SKILL.md +182 -165
  19. package/skills/gtrk-music-visualizer/SKILL.md +76 -76
  20. package/skills/gtrk-splitter/SKILL.md +208 -178
  21. package/skills/gtrk-splitter/references/example-visual-split.json +638 -638
  22. package/skills/gtrk-splitter/references/example-visual-split.md +439 -439
  23. package/skills/gtrk-splitter/references/field-schema.md +138 -134
  24. package/skills/gtrk-style-maker/references/ammo.md +16 -16
  25. package/skills/gtrk-style-maker/references/contracts-ref.md +9 -9
  26. package/skills/gtrk-style-maker/references/seeds/README.md +4 -4
  27. package/skills/gtrk-style-maker/references/seeds/seed-ecom-home-goods.md +37 -37
  28. package/skills/gtrk-style-maker/references/seeds/seed-psych-humanities.md +35 -35
  29. package/skills/gtrk-tools/SKILL.md +132 -124
  30. package/skills/gtrk-transcript/SKILL.md +64 -58
  31. package/skills/gtrk-transcript/agents/openai.yaml +4 -4
  32. package/skills/gtrk-travel-recap/SKILL.md +212 -0
package/AGENT.md CHANGED
@@ -19,6 +19,19 @@
19
19
  - 临时文件(抽帧图 / 中间物等)一律放系统 temp 且**用完即删**(含中断 / 失败路径也要清干净)。
20
20
  - 违反本条的直观后果:用户系统盘被静默吃满——这是真机发生过的事故,不是假设。
21
21
 
22
+ **在 gtrk-cli 仓库自身里跑真机走查时,追加一条(2026-08-23 立):**
23
+
24
+ - **仓根不落任何产物**。工作区一律 `--out .runs/<名字>`;命令回执与日志一律重定向进
25
+ `.runs/_receipts-<日期>/`,例如
26
+ `gtrk audio lay ... > .runs/_receipts-260823/audio-lay-out.json 2> .runs/_receipts-260823/audio-lay-stderr.log`。
27
+ - **MUST NOT** 使用 `> foo-out.json 2> foo-stderr.log` 这类**落在仓根**的重定向,
28
+ 也 **MUST NOT** 让 `--out` 缺省落到仓根。
29
+ - 直观后果:这是**公开 GitHub 仓**。仓根散落的 `*-out.json` 正文里带素材绝对路径与本机目录结构,
30
+ 一次 `git add -A` 就提上去了。2026-08-06 泄漏后历史已被 filter-repo 重写过一次,代价极高。
31
+ `.gitignore` 里的 `/.runs/` 与 `/*-out.json` 只是兜底;第一道闸是落点纪律本身。
32
+ - 历史积压已于 2026-08-23 清空:14 个走查工作区(2.0G)+ 13 个回执统一归入 `.runs/`,
33
+ 搬迁时同步改写了工程文件里 110 处绝对路径(含跨目录借用音频的交叉引用)。
34
+
22
35
  ---
23
36
 
24
37
  ## 0. 一句话流程
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 同合云 (Gitruck)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 同合云 (Gitruck)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.