claudecode-omc 5.5.2 → 5.6.1

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 (438) hide show
  1. package/.local/skills/de-ai-writing/SKILL.md +243 -0
  2. package/.local/skills/de-ai-writing/references/chinese-patterns.md +152 -0
  3. package/.local/skills/de-ai-writing/references/chinese-signals.md +121 -0
  4. package/.local/skills/de-ai-writing/references/domain-playbooks.md +120 -0
  5. package/.local/skills/de-ai-writing/references/wikipedia-signs.md +196 -0
  6. package/README.md +102 -10
  7. package/bundled/manifest.json +3 -2
  8. package/bundled/upstream/ecc/.omc-source/bundle.json +23 -0
  9. package/bundled/upstream/ecc/.omc-source/last-plan-apply.json +439 -0
  10. package/bundled/upstream/ecc/.omc-source/manifests/.claude-plugin/marketplace.json +47 -0
  11. package/bundled/upstream/ecc/agents/a11y-architect.md +141 -0
  12. package/bundled/upstream/ecc/agents/architect.md +211 -0
  13. package/bundled/upstream/ecc/agents/build-error-resolver.md +114 -0
  14. package/bundled/upstream/ecc/agents/chief-of-staff.md +151 -0
  15. package/bundled/upstream/ecc/agents/code-architect.md +71 -0
  16. package/bundled/upstream/ecc/agents/code-explorer.md +69 -0
  17. package/bundled/upstream/ecc/agents/code-reviewer.md +237 -0
  18. package/bundled/upstream/ecc/agents/code-simplifier.md +47 -0
  19. package/bundled/upstream/ecc/agents/comment-analyzer.md +45 -0
  20. package/bundled/upstream/ecc/agents/conversation-analyzer.md +52 -0
  21. package/bundled/upstream/ecc/agents/cpp-build-resolver.md +90 -0
  22. package/bundled/upstream/ecc/agents/cpp-reviewer.md +72 -0
  23. package/bundled/upstream/ecc/agents/csharp-reviewer.md +101 -0
  24. package/bundled/upstream/ecc/agents/dart-build-resolver.md +201 -0
  25. package/bundled/upstream/ecc/agents/database-reviewer.md +91 -0
  26. package/bundled/upstream/ecc/agents/doc-updater.md +107 -0
  27. package/bundled/upstream/ecc/agents/docs-lookup.md +68 -0
  28. package/bundled/upstream/ecc/agents/e2e-runner.md +107 -0
  29. package/bundled/upstream/ecc/agents/flutter-reviewer.md +243 -0
  30. package/bundled/upstream/ecc/agents/gan-evaluator.md +209 -0
  31. package/bundled/upstream/ecc/agents/gan-generator.md +131 -0
  32. package/bundled/upstream/ecc/agents/gan-planner.md +99 -0
  33. package/bundled/upstream/ecc/agents/go-build-resolver.md +94 -0
  34. package/bundled/upstream/ecc/agents/go-reviewer.md +76 -0
  35. package/bundled/upstream/ecc/agents/harness-optimizer.md +35 -0
  36. package/bundled/upstream/ecc/agents/healthcare-reviewer.md +83 -0
  37. package/bundled/upstream/ecc/agents/java-build-resolver.md +153 -0
  38. package/bundled/upstream/ecc/agents/java-reviewer.md +92 -0
  39. package/bundled/upstream/ecc/agents/kotlin-build-resolver.md +118 -0
  40. package/bundled/upstream/ecc/agents/kotlin-reviewer.md +159 -0
  41. package/bundled/upstream/ecc/agents/loop-operator.md +36 -0
  42. package/bundled/upstream/ecc/agents/opensource-forker.md +198 -0
  43. package/bundled/upstream/ecc/agents/opensource-packager.md +249 -0
  44. package/bundled/upstream/ecc/agents/opensource-sanitizer.md +188 -0
  45. package/bundled/upstream/ecc/agents/performance-optimizer.md +446 -0
  46. package/bundled/upstream/ecc/agents/planner.md +212 -0
  47. package/bundled/upstream/ecc/agents/pr-test-analyzer.md +45 -0
  48. package/bundled/upstream/ecc/agents/python-reviewer.md +98 -0
  49. package/bundled/upstream/ecc/agents/pytorch-build-resolver.md +120 -0
  50. package/bundled/upstream/ecc/agents/refactor-cleaner.md +85 -0
  51. package/bundled/upstream/ecc/agents/rust-build-resolver.md +148 -0
  52. package/bundled/upstream/ecc/agents/rust-reviewer.md +94 -0
  53. package/bundled/upstream/ecc/agents/security-reviewer.md +108 -0
  54. package/bundled/upstream/ecc/agents/seo-specialist.md +62 -0
  55. package/bundled/upstream/ecc/agents/silent-failure-hunter.md +50 -0
  56. package/bundled/upstream/ecc/agents/tdd-guide.md +91 -0
  57. package/bundled/upstream/ecc/agents/type-design-analyzer.md +41 -0
  58. package/bundled/upstream/ecc/agents/typescript-reviewer.md +112 -0
  59. package/bundled/upstream/ecc/commands/agent-sort.md +23 -0
  60. package/bundled/upstream/ecc/commands/aside.md +164 -0
  61. package/bundled/upstream/ecc/commands/build-fix.md +62 -0
  62. package/bundled/upstream/ecc/commands/checkpoint.md +74 -0
  63. package/bundled/upstream/ecc/commands/claw.md +23 -0
  64. package/bundled/upstream/ecc/commands/code-review.md +289 -0
  65. package/bundled/upstream/ecc/commands/context-budget.md +23 -0
  66. package/bundled/upstream/ecc/commands/cpp-build.md +173 -0
  67. package/bundled/upstream/ecc/commands/cpp-review.md +132 -0
  68. package/bundled/upstream/ecc/commands/cpp-test.md +251 -0
  69. package/bundled/upstream/ecc/commands/devfleet.md +23 -0
  70. package/bundled/upstream/ecc/commands/docs.md +23 -0
  71. package/bundled/upstream/ecc/commands/e2e.md +268 -0
  72. package/bundled/upstream/ecc/commands/eval.md +23 -0
  73. package/bundled/upstream/ecc/commands/evolve.md +178 -0
  74. package/bundled/upstream/ecc/commands/feature-dev.md +49 -0
  75. package/bundled/upstream/ecc/commands/flutter-build.md +164 -0
  76. package/bundled/upstream/ecc/commands/flutter-review.md +116 -0
  77. package/bundled/upstream/ecc/commands/flutter-test.md +144 -0
  78. package/bundled/upstream/ecc/commands/gan-build.md +99 -0
  79. package/bundled/upstream/ecc/commands/gan-design.md +35 -0
  80. package/bundled/upstream/ecc/commands/go-build.md +183 -0
  81. package/bundled/upstream/ecc/commands/go-review.md +148 -0
  82. package/bundled/upstream/ecc/commands/go-test.md +268 -0
  83. package/bundled/upstream/ecc/commands/gradle-build.md +70 -0
  84. package/bundled/upstream/ecc/commands/harness-audit.md +73 -0
  85. package/bundled/upstream/ecc/commands/hookify-configure.md +14 -0
  86. package/bundled/upstream/ecc/commands/hookify-help.md +46 -0
  87. package/bundled/upstream/ecc/commands/hookify-list.md +21 -0
  88. package/bundled/upstream/ecc/commands/hookify.md +50 -0
  89. package/bundled/upstream/ecc/commands/instinct-export.md +66 -0
  90. package/bundled/upstream/ecc/commands/instinct-import.md +114 -0
  91. package/bundled/upstream/ecc/commands/instinct-status.md +59 -0
  92. package/bundled/upstream/ecc/commands/jira.md +106 -0
  93. package/bundled/upstream/ecc/commands/kotlin-build.md +174 -0
  94. package/bundled/upstream/ecc/commands/kotlin-review.md +140 -0
  95. package/bundled/upstream/ecc/commands/kotlin-test.md +312 -0
  96. package/bundled/upstream/ecc/commands/learn-eval.md +116 -0
  97. package/bundled/upstream/ecc/commands/learn.md +70 -0
  98. package/bundled/upstream/ecc/commands/loop-start.md +32 -0
  99. package/bundled/upstream/ecc/commands/loop-status.md +24 -0
  100. package/bundled/upstream/ecc/commands/model-route.md +26 -0
  101. package/bundled/upstream/ecc/commands/multi-backend.md +158 -0
  102. package/bundled/upstream/ecc/commands/multi-execute.md +315 -0
  103. package/bundled/upstream/ecc/commands/multi-frontend.md +158 -0
  104. package/bundled/upstream/ecc/commands/multi-plan.md +268 -0
  105. package/bundled/upstream/ecc/commands/multi-workflow.md +191 -0
  106. package/bundled/upstream/ecc/commands/orchestrate.md +135 -0
  107. package/bundled/upstream/ecc/commands/plan.md +117 -0
  108. package/bundled/upstream/ecc/commands/pm2.md +272 -0
  109. package/bundled/upstream/ecc/commands/projects.md +39 -0
  110. package/bundled/upstream/ecc/commands/promote.md +41 -0
  111. package/bundled/upstream/ecc/commands/prompt-optimize.md +23 -0
  112. package/bundled/upstream/ecc/commands/prp-commit.md +112 -0
  113. package/bundled/upstream/ecc/commands/prp-implement.md +385 -0
  114. package/bundled/upstream/ecc/commands/prp-plan.md +502 -0
  115. package/bundled/upstream/ecc/commands/prp-pr.md +184 -0
  116. package/bundled/upstream/ecc/commands/prp-prd.md +447 -0
  117. package/bundled/upstream/ecc/commands/prune.md +31 -0
  118. package/bundled/upstream/ecc/commands/python-review.md +297 -0
  119. package/bundled/upstream/ecc/commands/quality-gate.md +29 -0
  120. package/bundled/upstream/ecc/commands/refactor-clean.md +80 -0
  121. package/bundled/upstream/ecc/commands/resume-session.md +156 -0
  122. package/bundled/upstream/ecc/commands/review-pr.md +37 -0
  123. package/bundled/upstream/ecc/commands/rules-distill.md +20 -0
  124. package/bundled/upstream/ecc/commands/rust-build.md +187 -0
  125. package/bundled/upstream/ecc/commands/rust-review.md +142 -0
  126. package/bundled/upstream/ecc/commands/rust-test.md +308 -0
  127. package/bundled/upstream/ecc/commands/santa-loop.md +175 -0
  128. package/bundled/upstream/ecc/commands/save-session.md +275 -0
  129. package/bundled/upstream/ecc/commands/sessions.md +339 -0
  130. package/bundled/upstream/ecc/commands/setup-pm.md +80 -0
  131. package/bundled/upstream/ecc/commands/skill-create.md +174 -0
  132. package/bundled/upstream/ecc/commands/skill-health.md +54 -0
  133. package/bundled/upstream/ecc/commands/tdd.md +231 -0
  134. package/bundled/upstream/ecc/commands/test-coverage.md +69 -0
  135. package/bundled/upstream/ecc/commands/update-codemaps.md +72 -0
  136. package/bundled/upstream/ecc/commands/update-docs.md +84 -0
  137. package/bundled/upstream/ecc/commands/verify.md +23 -0
  138. package/bundled/upstream/ecc/hooks/README.md +237 -0
  139. package/bundled/upstream/ecc/hooks/hooks.json +330 -0
  140. package/bundled/upstream/ecc/skills/accessibility/SKILL.md +146 -0
  141. package/bundled/upstream/ecc/skills/agent-eval/SKILL.md +145 -0
  142. package/bundled/upstream/ecc/skills/agent-harness-construction/SKILL.md +73 -0
  143. package/bundled/upstream/ecc/skills/agent-introspection-debugging/SKILL.md +153 -0
  144. package/bundled/upstream/ecc/skills/agent-payment-x402/SKILL.md +178 -0
  145. package/bundled/upstream/ecc/skills/agent-sort/SKILL.md +215 -0
  146. package/bundled/upstream/ecc/skills/agentic-engineering/SKILL.md +63 -0
  147. package/bundled/upstream/ecc/skills/ai-first-engineering/SKILL.md +51 -0
  148. package/bundled/upstream/ecc/skills/ai-regression-testing/SKILL.md +385 -0
  149. package/bundled/upstream/ecc/skills/android-clean-architecture/SKILL.md +339 -0
  150. package/bundled/upstream/ecc/skills/api-connector-builder/SKILL.md +120 -0
  151. package/bundled/upstream/ecc/skills/api-design/SKILL.md +523 -0
  152. package/bundled/upstream/ecc/skills/architecture-decision-records/SKILL.md +179 -0
  153. package/bundled/upstream/ecc/skills/article-writing/SKILL.md +79 -0
  154. package/bundled/upstream/ecc/skills/automation-audit-ops/SKILL.md +142 -0
  155. package/bundled/upstream/ecc/skills/autonomous-agent-harness/SKILL.md +267 -0
  156. package/bundled/upstream/ecc/skills/autonomous-loops/SKILL.md +610 -0
  157. package/bundled/upstream/ecc/skills/backend-patterns/SKILL.md +598 -0
  158. package/bundled/upstream/ecc/skills/benchmark/SKILL.md +93 -0
  159. package/bundled/upstream/ecc/skills/blueprint/SKILL.md +105 -0
  160. package/bundled/upstream/ecc/skills/brand-voice/SKILL.md +97 -0
  161. package/bundled/upstream/ecc/skills/brand-voice/references/voice-profile-schema.md +55 -0
  162. package/bundled/upstream/ecc/skills/browser-qa/SKILL.md +87 -0
  163. package/bundled/upstream/ecc/skills/bun-runtime/SKILL.md +84 -0
  164. package/bundled/upstream/ecc/skills/canary-watch/SKILL.md +99 -0
  165. package/bundled/upstream/ecc/skills/carrier-relationship-management/SKILL.md +212 -0
  166. package/bundled/upstream/ecc/skills/ck/SKILL.md +147 -0
  167. package/bundled/upstream/ecc/skills/ck/commands/forget.mjs +44 -0
  168. package/bundled/upstream/ecc/skills/ck/commands/info.mjs +24 -0
  169. package/bundled/upstream/ecc/skills/ck/commands/init.mjs +143 -0
  170. package/bundled/upstream/ecc/skills/ck/commands/list.mjs +40 -0
  171. package/bundled/upstream/ecc/skills/ck/commands/migrate.mjs +202 -0
  172. package/bundled/upstream/ecc/skills/ck/commands/resume.mjs +36 -0
  173. package/bundled/upstream/ecc/skills/ck/commands/save.mjs +210 -0
  174. package/bundled/upstream/ecc/skills/ck/commands/shared.mjs +387 -0
  175. package/bundled/upstream/ecc/skills/ck/hooks/session-start.mjs +224 -0
  176. package/bundled/upstream/ecc/skills/claude-api/SKILL.md +337 -0
  177. package/bundled/upstream/ecc/skills/claude-devfleet/SKILL.md +103 -0
  178. package/bundled/upstream/ecc/skills/click-path-audit/SKILL.md +244 -0
  179. package/bundled/upstream/ecc/skills/clickhouse-io/SKILL.md +439 -0
  180. package/bundled/upstream/ecc/skills/code-tour/SKILL.md +236 -0
  181. package/bundled/upstream/ecc/skills/codebase-onboarding/SKILL.md +233 -0
  182. package/bundled/upstream/ecc/skills/coding-standards/SKILL.md +549 -0
  183. package/bundled/upstream/ecc/skills/compose-multiplatform-patterns/SKILL.md +299 -0
  184. package/bundled/upstream/ecc/skills/configure-ecc/SKILL.md +367 -0
  185. package/bundled/upstream/ecc/skills/connections-optimizer/SKILL.md +189 -0
  186. package/bundled/upstream/ecc/skills/content-engine/SKILL.md +131 -0
  187. package/bundled/upstream/ecc/skills/content-hash-cache-pattern/SKILL.md +161 -0
  188. package/bundled/upstream/ecc/skills/context-budget/SKILL.md +135 -0
  189. package/bundled/upstream/ecc/skills/continuous-agent-loop/SKILL.md +45 -0
  190. package/bundled/upstream/ecc/skills/continuous-learning/SKILL.md +123 -0
  191. package/bundled/upstream/ecc/skills/continuous-learning/config.json +18 -0
  192. package/bundled/upstream/ecc/skills/continuous-learning/evaluate-session.sh +69 -0
  193. package/bundled/upstream/ecc/skills/continuous-learning-v2/SKILL.md +346 -0
  194. package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/observer-loop.sh +282 -0
  195. package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/observer.md +198 -0
  196. package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
  197. package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/start-observer.sh +244 -0
  198. package/bundled/upstream/ecc/skills/continuous-learning-v2/config.json +8 -0
  199. package/bundled/upstream/ecc/skills/continuous-learning-v2/hooks/observe.sh +460 -0
  200. package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/detect-project.sh +243 -0
  201. package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/instinct-cli.py +1426 -0
  202. package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/test_parse_instinct.py +984 -0
  203. package/bundled/upstream/ecc/skills/cost-aware-llm-pipeline/SKILL.md +183 -0
  204. package/bundled/upstream/ecc/skills/council/SKILL.md +203 -0
  205. package/bundled/upstream/ecc/skills/cpp-coding-standards/SKILL.md +723 -0
  206. package/bundled/upstream/ecc/skills/cpp-testing/SKILL.md +324 -0
  207. package/bundled/upstream/ecc/skills/crosspost/SKILL.md +111 -0
  208. package/bundled/upstream/ecc/skills/csharp-testing/SKILL.md +321 -0
  209. package/bundled/upstream/ecc/skills/customer-billing-ops/SKILL.md +140 -0
  210. package/bundled/upstream/ecc/skills/customs-trade-compliance/SKILL.md +263 -0
  211. package/bundled/upstream/ecc/skills/dart-flutter-patterns/SKILL.md +563 -0
  212. package/bundled/upstream/ecc/skills/dashboard-builder/SKILL.md +108 -0
  213. package/bundled/upstream/ecc/skills/data-scraper-agent/SKILL.md +764 -0
  214. package/bundled/upstream/ecc/skills/database-migrations/SKILL.md +429 -0
  215. package/bundled/upstream/ecc/skills/deep-research/SKILL.md +155 -0
  216. package/bundled/upstream/ecc/skills/defi-amm-security/SKILL.md +160 -0
  217. package/bundled/upstream/ecc/skills/deployment-patterns/SKILL.md +427 -0
  218. package/bundled/upstream/ecc/skills/design-system/SKILL.md +82 -0
  219. package/bundled/upstream/ecc/skills/django-patterns/SKILL.md +734 -0
  220. package/bundled/upstream/ecc/skills/django-security/SKILL.md +593 -0
  221. package/bundled/upstream/ecc/skills/django-tdd/SKILL.md +729 -0
  222. package/bundled/upstream/ecc/skills/django-verification/SKILL.md +469 -0
  223. package/bundled/upstream/ecc/skills/dmux-workflows/SKILL.md +191 -0
  224. package/bundled/upstream/ecc/skills/docker-patterns/SKILL.md +364 -0
  225. package/bundled/upstream/ecc/skills/documentation-lookup/SKILL.md +90 -0
  226. package/bundled/upstream/ecc/skills/dotnet-patterns/SKILL.md +321 -0
  227. package/bundled/upstream/ecc/skills/e2e-testing/SKILL.md +326 -0
  228. package/bundled/upstream/ecc/skills/ecc-tools-cost-audit/SKILL.md +160 -0
  229. package/bundled/upstream/ecc/skills/email-ops/SKILL.md +121 -0
  230. package/bundled/upstream/ecc/skills/energy-procurement/SKILL.md +228 -0
  231. package/bundled/upstream/ecc/skills/enterprise-agent-ops/SKILL.md +50 -0
  232. package/bundled/upstream/ecc/skills/eval-harness/SKILL.md +270 -0
  233. package/bundled/upstream/ecc/skills/evm-token-decimals/SKILL.md +130 -0
  234. package/bundled/upstream/ecc/skills/exa-search/SKILL.md +103 -0
  235. package/bundled/upstream/ecc/skills/fal-ai-media/SKILL.md +284 -0
  236. package/bundled/upstream/ecc/skills/finance-billing-ops/SKILL.md +127 -0
  237. package/bundled/upstream/ecc/skills/flutter-dart-code-review/SKILL.md +435 -0
  238. package/bundled/upstream/ecc/skills/foundation-models-on-device/SKILL.md +243 -0
  239. package/bundled/upstream/ecc/skills/frontend-design/SKILL.md +145 -0
  240. package/bundled/upstream/ecc/skills/frontend-patterns/SKILL.md +642 -0
  241. package/bundled/upstream/ecc/skills/frontend-slides/SKILL.md +184 -0
  242. package/bundled/upstream/ecc/skills/frontend-slides/STYLE_PRESETS.md +330 -0
  243. package/bundled/upstream/ecc/skills/gan-style-harness/SKILL.md +278 -0
  244. package/bundled/upstream/ecc/skills/gateguard/SKILL.md +121 -0
  245. package/bundled/upstream/ecc/skills/git-workflow/SKILL.md +715 -0
  246. package/bundled/upstream/ecc/skills/github-ops/SKILL.md +144 -0
  247. package/bundled/upstream/ecc/skills/golang-patterns/SKILL.md +674 -0
  248. package/bundled/upstream/ecc/skills/golang-testing/SKILL.md +720 -0
  249. package/bundled/upstream/ecc/skills/google-workspace-ops/SKILL.md +95 -0
  250. package/bundled/upstream/ecc/skills/healthcare-cdss-patterns/SKILL.md +245 -0
  251. package/bundled/upstream/ecc/skills/healthcare-emr-patterns/SKILL.md +159 -0
  252. package/bundled/upstream/ecc/skills/healthcare-eval-harness/SKILL.md +207 -0
  253. package/bundled/upstream/ecc/skills/healthcare-phi-compliance/SKILL.md +145 -0
  254. package/bundled/upstream/ecc/skills/hexagonal-architecture/SKILL.md +276 -0
  255. package/bundled/upstream/ecc/skills/hipaa-compliance/SKILL.md +78 -0
  256. package/bundled/upstream/ecc/skills/hookify-rules/SKILL.md +128 -0
  257. package/bundled/upstream/ecc/skills/inventory-demand-planning/SKILL.md +247 -0
  258. package/bundled/upstream/ecc/skills/investor-materials/SKILL.md +96 -0
  259. package/bundled/upstream/ecc/skills/investor-outreach/SKILL.md +91 -0
  260. package/bundled/upstream/ecc/skills/iterative-retrieval/SKILL.md +211 -0
  261. package/bundled/upstream/ecc/skills/java-coding-standards/SKILL.md +147 -0
  262. package/bundled/upstream/ecc/skills/jira-integration/SKILL.md +293 -0
  263. package/bundled/upstream/ecc/skills/jpa-patterns/SKILL.md +151 -0
  264. package/bundled/upstream/ecc/skills/knowledge-ops/SKILL.md +154 -0
  265. package/bundled/upstream/ecc/skills/kotlin-coroutines-flows/SKILL.md +284 -0
  266. package/bundled/upstream/ecc/skills/kotlin-exposed-patterns/SKILL.md +719 -0
  267. package/bundled/upstream/ecc/skills/kotlin-ktor-patterns/SKILL.md +689 -0
  268. package/bundled/upstream/ecc/skills/kotlin-patterns/SKILL.md +711 -0
  269. package/bundled/upstream/ecc/skills/kotlin-testing/SKILL.md +824 -0
  270. package/bundled/upstream/ecc/skills/laravel-patterns/SKILL.md +415 -0
  271. package/bundled/upstream/ecc/skills/laravel-plugin-discovery/SKILL.md +229 -0
  272. package/bundled/upstream/ecc/skills/laravel-security/SKILL.md +285 -0
  273. package/bundled/upstream/ecc/skills/laravel-tdd/SKILL.md +283 -0
  274. package/bundled/upstream/ecc/skills/laravel-verification/SKILL.md +179 -0
  275. package/bundled/upstream/ecc/skills/lead-intelligence/SKILL.md +321 -0
  276. package/bundled/upstream/ecc/skills/lead-intelligence/agents/enrichment-agent.md +85 -0
  277. package/bundled/upstream/ecc/skills/lead-intelligence/agents/mutual-mapper.md +75 -0
  278. package/bundled/upstream/ecc/skills/lead-intelligence/agents/outreach-drafter.md +98 -0
  279. package/bundled/upstream/ecc/skills/lead-intelligence/agents/signal-scorer.md +60 -0
  280. package/bundled/upstream/ecc/skills/liquid-glass-design/SKILL.md +279 -0
  281. package/bundled/upstream/ecc/skills/llm-trading-agent-security/SKILL.md +146 -0
  282. package/bundled/upstream/ecc/skills/logistics-exception-management/SKILL.md +222 -0
  283. package/bundled/upstream/ecc/skills/manim-video/SKILL.md +89 -0
  284. package/bundled/upstream/ecc/skills/manim-video/assets/network_graph_scene.py +52 -0
  285. package/bundled/upstream/ecc/skills/market-research/SKILL.md +75 -0
  286. package/bundled/upstream/ecc/skills/mcp-server-patterns/SKILL.md +69 -0
  287. package/bundled/upstream/ecc/skills/messages-ops/SKILL.md +104 -0
  288. package/bundled/upstream/ecc/skills/nanoclaw-repl/SKILL.md +33 -0
  289. package/bundled/upstream/ecc/skills/nestjs-patterns/SKILL.md +230 -0
  290. package/bundled/upstream/ecc/skills/nextjs-turbopack/SKILL.md +44 -0
  291. package/bundled/upstream/ecc/skills/nodejs-keccak256/SKILL.md +102 -0
  292. package/bundled/upstream/ecc/skills/nutrient-document-processing/SKILL.md +167 -0
  293. package/bundled/upstream/ecc/skills/nuxt4-patterns/SKILL.md +100 -0
  294. package/bundled/upstream/ecc/skills/openclaw-persona-forge/SKILL.md +296 -0
  295. package/bundled/upstream/ecc/skills/openclaw-persona-forge/gacha.py +224 -0
  296. package/bundled/upstream/ecc/skills/openclaw-persona-forge/gacha.sh +5 -0
  297. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/avatar-style.md +124 -0
  298. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/boundary-rules.md +53 -0
  299. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/error-handling.md +53 -0
  300. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/identity-tension.md +48 -0
  301. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/naming-system.md +39 -0
  302. package/bundled/upstream/ecc/skills/openclaw-persona-forge/references/output-template.md +166 -0
  303. package/bundled/upstream/ecc/skills/opensource-pipeline/SKILL.md +255 -0
  304. package/bundled/upstream/ecc/skills/perl-patterns/SKILL.md +504 -0
  305. package/bundled/upstream/ecc/skills/perl-security/SKILL.md +503 -0
  306. package/bundled/upstream/ecc/skills/perl-testing/SKILL.md +475 -0
  307. package/bundled/upstream/ecc/skills/plankton-code-quality/SKILL.md +236 -0
  308. package/bundled/upstream/ecc/skills/postgres-patterns/SKILL.md +147 -0
  309. package/bundled/upstream/ecc/skills/product-capability/SKILL.md +141 -0
  310. package/bundled/upstream/ecc/skills/product-lens/SKILL.md +92 -0
  311. package/bundled/upstream/ecc/skills/production-scheduling/SKILL.md +238 -0
  312. package/bundled/upstream/ecc/skills/project-flow-ops/SKILL.md +111 -0
  313. package/bundled/upstream/ecc/skills/prompt-optimizer/SKILL.md +397 -0
  314. package/bundled/upstream/ecc/skills/python-patterns/SKILL.md +750 -0
  315. package/bundled/upstream/ecc/skills/python-testing/SKILL.md +816 -0
  316. package/bundled/upstream/ecc/skills/pytorch-patterns/SKILL.md +396 -0
  317. package/bundled/upstream/ecc/skills/quality-nonconformance/SKILL.md +260 -0
  318. package/bundled/upstream/ecc/skills/ralphinho-rfc-pipeline/SKILL.md +67 -0
  319. package/bundled/upstream/ecc/skills/regex-vs-llm-structured-text/SKILL.md +220 -0
  320. package/bundled/upstream/ecc/skills/remotion-video-creation/SKILL.md +43 -0
  321. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/3d.md +86 -0
  322. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/animations.md +29 -0
  323. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
  324. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
  325. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
  326. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/assets.md +78 -0
  327. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/audio.md +172 -0
  328. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/calculate-metadata.md +104 -0
  329. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/can-decode.md +75 -0
  330. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/charts.md +58 -0
  331. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/compositions.md +146 -0
  332. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/display-captions.md +126 -0
  333. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/extract-frames.md +229 -0
  334. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/fonts.md +152 -0
  335. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/get-audio-duration.md +58 -0
  336. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/get-video-dimensions.md +68 -0
  337. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/get-video-duration.md +58 -0
  338. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/gifs.md +138 -0
  339. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/images.md +130 -0
  340. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/import-srt-captions.md +67 -0
  341. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/lottie.md +67 -0
  342. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
  343. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/measuring-text.md +143 -0
  344. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/sequencing.md +106 -0
  345. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/tailwind.md +11 -0
  346. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/text-animations.md +20 -0
  347. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/timing.md +179 -0
  348. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/transcribe-captions.md +19 -0
  349. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/transitions.md +122 -0
  350. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/trimming.md +52 -0
  351. package/bundled/upstream/ecc/skills/remotion-video-creation/rules/videos.md +171 -0
  352. package/bundled/upstream/ecc/skills/repo-scan/SKILL.md +78 -0
  353. package/bundled/upstream/ecc/skills/research-ops/SKILL.md +112 -0
  354. package/bundled/upstream/ecc/skills/returns-reverse-logistics/SKILL.md +240 -0
  355. package/bundled/upstream/ecc/skills/rules-distill/SKILL.md +264 -0
  356. package/bundled/upstream/ecc/skills/rules-distill/scripts/scan-rules.sh +58 -0
  357. package/bundled/upstream/ecc/skills/rules-distill/scripts/scan-skills.sh +129 -0
  358. package/bundled/upstream/ecc/skills/rust-patterns/SKILL.md +499 -0
  359. package/bundled/upstream/ecc/skills/rust-testing/SKILL.md +500 -0
  360. package/bundled/upstream/ecc/skills/safety-guard/SKILL.md +75 -0
  361. package/bundled/upstream/ecc/skills/santa-method/SKILL.md +306 -0
  362. package/bundled/upstream/ecc/skills/search-first/SKILL.md +161 -0
  363. package/bundled/upstream/ecc/skills/security-bounty-hunter/SKILL.md +99 -0
  364. package/bundled/upstream/ecc/skills/security-review/SKILL.md +495 -0
  365. package/bundled/upstream/ecc/skills/security-review/cloud-infrastructure-security.md +361 -0
  366. package/bundled/upstream/ecc/skills/security-scan/SKILL.md +165 -0
  367. package/bundled/upstream/ecc/skills/seo/SKILL.md +154 -0
  368. package/bundled/upstream/ecc/skills/skill-comply/SKILL.md +58 -0
  369. package/bundled/upstream/ecc/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
  370. package/bundled/upstream/ecc/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
  371. package/bundled/upstream/ecc/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
  372. package/bundled/upstream/ecc/skills/skill-comply/prompts/classifier.md +24 -0
  373. package/bundled/upstream/ecc/skills/skill-comply/prompts/scenario_generator.md +62 -0
  374. package/bundled/upstream/ecc/skills/skill-comply/prompts/spec_generator.md +42 -0
  375. package/bundled/upstream/ecc/skills/skill-comply/pyproject.toml +15 -0
  376. package/bundled/upstream/ecc/skills/skill-comply/scripts/__init__.py +0 -0
  377. package/bundled/upstream/ecc/skills/skill-comply/scripts/classifier.py +85 -0
  378. package/bundled/upstream/ecc/skills/skill-comply/scripts/grader.py +124 -0
  379. package/bundled/upstream/ecc/skills/skill-comply/scripts/parser.py +107 -0
  380. package/bundled/upstream/ecc/skills/skill-comply/scripts/report.py +170 -0
  381. package/bundled/upstream/ecc/skills/skill-comply/scripts/run.py +127 -0
  382. package/bundled/upstream/ecc/skills/skill-comply/scripts/runner.py +161 -0
  383. package/bundled/upstream/ecc/skills/skill-comply/scripts/scenario_generator.py +70 -0
  384. package/bundled/upstream/ecc/skills/skill-comply/scripts/spec_generator.py +72 -0
  385. package/bundled/upstream/ecc/skills/skill-comply/scripts/utils.py +13 -0
  386. package/bundled/upstream/ecc/skills/skill-comply/tests/test_grader.py +197 -0
  387. package/bundled/upstream/ecc/skills/skill-comply/tests/test_parser.py +90 -0
  388. package/bundled/upstream/ecc/skills/skill-stocktake/SKILL.md +193 -0
  389. package/bundled/upstream/ecc/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
  390. package/bundled/upstream/ecc/skills/skill-stocktake/scripts/save-results.sh +56 -0
  391. package/bundled/upstream/ecc/skills/skill-stocktake/scripts/scan.sh +170 -0
  392. package/bundled/upstream/ecc/skills/social-graph-ranker/SKILL.md +154 -0
  393. package/bundled/upstream/ecc/skills/springboot-patterns/SKILL.md +314 -0
  394. package/bundled/upstream/ecc/skills/springboot-security/SKILL.md +272 -0
  395. package/bundled/upstream/ecc/skills/springboot-tdd/SKILL.md +158 -0
  396. package/bundled/upstream/ecc/skills/springboot-verification/SKILL.md +231 -0
  397. package/bundled/upstream/ecc/skills/strategic-compact/SKILL.md +131 -0
  398. package/bundled/upstream/ecc/skills/strategic-compact/suggest-compact.sh +54 -0
  399. package/bundled/upstream/ecc/skills/swift-actor-persistence/SKILL.md +143 -0
  400. package/bundled/upstream/ecc/skills/swift-concurrency-6-2/SKILL.md +216 -0
  401. package/bundled/upstream/ecc/skills/swift-protocol-di-testing/SKILL.md +190 -0
  402. package/bundled/upstream/ecc/skills/swiftui-patterns/SKILL.md +259 -0
  403. package/bundled/upstream/ecc/skills/tdd-workflow/SKILL.md +463 -0
  404. package/bundled/upstream/ecc/skills/team-builder/SKILL.md +168 -0
  405. package/bundled/upstream/ecc/skills/terminal-ops/SKILL.md +109 -0
  406. package/bundled/upstream/ecc/skills/token-budget-advisor/SKILL.md +133 -0
  407. package/bundled/upstream/ecc/skills/ui-demo/SKILL.md +465 -0
  408. package/bundled/upstream/ecc/skills/unified-notifications-ops/SKILL.md +187 -0
  409. package/bundled/upstream/ecc/skills/verification-loop/SKILL.md +126 -0
  410. package/bundled/upstream/ecc/skills/video-editing/SKILL.md +310 -0
  411. package/bundled/upstream/ecc/skills/videodb/SKILL.md +374 -0
  412. package/bundled/upstream/ecc/skills/videodb/reference/api-reference.md +550 -0
  413. package/bundled/upstream/ecc/skills/videodb/reference/capture-reference.md +407 -0
  414. package/bundled/upstream/ecc/skills/videodb/reference/capture.md +101 -0
  415. package/bundled/upstream/ecc/skills/videodb/reference/editor.md +443 -0
  416. package/bundled/upstream/ecc/skills/videodb/reference/generative.md +331 -0
  417. package/bundled/upstream/ecc/skills/videodb/reference/rtstream-reference.md +564 -0
  418. package/bundled/upstream/ecc/skills/videodb/reference/rtstream.md +65 -0
  419. package/bundled/upstream/ecc/skills/videodb/reference/search.md +230 -0
  420. package/bundled/upstream/ecc/skills/videodb/reference/streaming.md +406 -0
  421. package/bundled/upstream/ecc/skills/videodb/reference/use-cases.md +118 -0
  422. package/bundled/upstream/ecc/skills/videodb/scripts/ws_listener.py +282 -0
  423. package/bundled/upstream/ecc/skills/visa-doc-translate/README.md +86 -0
  424. package/bundled/upstream/ecc/skills/visa-doc-translate/SKILL.md +117 -0
  425. package/bundled/upstream/ecc/skills/workspace-surface-audit/SKILL.md +125 -0
  426. package/bundled/upstream/ecc/skills/x-api/SKILL.md +230 -0
  427. package/bundled/upstream/superpowers/.omc-source/last-plan-apply.json +22 -0
  428. package/package.json +3 -1
  429. package/src/catalog/source-catalog.js +391 -0
  430. package/src/cli/artifact.js +3 -2
  431. package/src/cli/doctor.js +25 -4
  432. package/src/cli/index.js +19 -0
  433. package/src/cli/plan.js +220 -0
  434. package/src/cli/setup.js +209 -12
  435. package/src/cli/source.js +110 -3
  436. package/src/config/paths.js +31 -0
  437. package/src/config/sources.js +103 -10
  438. package/src/merge/hook-merger.js +1 -0
@@ -0,0 +1,243 @@
1
+ ---
2
+ name: de-ai-writing
3
+ description: Humanize PROSE drafts — articles, blog posts, public-account 公众号 copy, marketing copy, sermons, technical write-ups — that read like an LLM produced them. Chinese-first, supports zh/en mixed text. Cross-checks output against the Wikipedia "Signs of AI writing" taxonomy before delivery. TRIGGER when user asks to remove AI tone or humanize TEXT/DRAFT/ARTICLE/COPY/稿/文章/帖子: "去 AI 味", "去ai味", "降低机器感", "改得像真人写的", "不要 AI 腔", "humanize this draft", "humanize this article", "remove AI tone", "de-ai this writing". DO NOT TRIGGER for code cleanup, dead-code removal, AI-generated source code, or "deslop" of codebases — those belong to ai-slop-cleaner. DO NOT TRIGGER for prompt optimization — that is prompt-optimizer.
4
+ origin: fork
5
+ ---
6
+
7
+ # De-AI Writing Skill
8
+
9
+ ## Canonical Reference (Mandatory On Every Invocation)
10
+
11
+ This skill is **anchored to** Wikipedia's *Signs of AI writing* taxonomy maintained by WikiProject AI Cleanup. It is the diagnostic source of truth — do **not** rely on memory or "feel".
12
+
13
+ Every run MUST:
14
+
15
+ 1. Load the local checklist `references/wikipedia-signs.md` and walk through Groups A–D.
16
+ 2. Mark which sign categories are firing in this specific draft (max 3–5 strongest).
17
+ 3. Apply rewrite moves only against signs that actually fired.
18
+ 4. Re-scan the rewrite once more against the same checklist before returning.
19
+
20
+ Upstream source: <https://en.wikipedia.org/wiki/Wikipedia:Signs_of_AI_writing>
21
+ Structure inspiration: <https://github.com/op7418/Humanizer-zh/blob/main/SKILL.md>
22
+
23
+ > If the user explicitly says "skip the checklist" / "just rewrite", honour that — but log in `处理说明` that the Wikipedia cross-check was skipped on user request.
24
+
25
+ ## Execution Mode
26
+
27
+ This skill runs as a single-threaded, sequential rewrite (锁约束 → 对照分类法 → 改写 → 复扫)。不要拆 subagent 并行——分类法判断必须连贯,跨 subagent 容易丢上下文。
28
+
29
+ 只有在用户明确说"批量处理多篇独立稿件"时,才用 `Agent` 工具按"一篇一个 subagent"分发;每个 subagent 必须独立完成 Wikipedia 复扫。
30
+
31
+ > 调用方式:`Skill` 工具 with `skill: de-ai-writing`,或在对话里直接说"去 AI 味"等触发短语。
32
+
33
+ ## Purpose
34
+
35
+ 将“去 AI 味”定义为一次**风格校正 + 注入声音**,不是“伪造真人痕迹”,也不是“胡乱口语化”:
36
+
37
+ 1. 保留事实、观点、逻辑、术语。
38
+ 2. 按 Wikipedia 分类法定位真正在响的 AI 信号,不做散点挑刺。
39
+ 3. 把抽象评价改成具体观察、机制、判断。
40
+ 4. 打破过分平均的句长、段落长度和连接词节奏。
41
+ 5. 让“一个有判断的人”出现在文章里,而不是“一个会生成完整结构的模板”。
42
+
43
+ ## Five Core Rules (Quick Mantra)
44
+
45
+ 1. **删填充** — 开场白、强调拐杖、安全总结。
46
+ 2. **打破公式** — 二元对比、三段式、修辞 setup。
47
+ 3. **变化节奏** — 长短句混合、段落不一律饱满。
48
+ 4. **信任读者** — 直接陈述,跳过软化、辩解、手把手。
49
+ 5. **删金句** — 听起来像可截图的“小作文”就重写。
50
+
51
+ ## Personality & Soul (避免另一种死法)
52
+
53
+ 去掉 AI 模式只是工作的一半。无菌、没有声音的写作和机器生成内容一样可疑。
54
+
55
+ 判断“写作是否有人住在里面”的迹象:
56
+
57
+ - 是否承担一个具体观点(哪怕带不确定)。
58
+ - 是否变化节奏,而不是每句都完整。
59
+ - 是否承认复杂性、模糊感、未解之处。
60
+ - 在合适处使用第一人称视角(不是“显得不专业”,而是诚实)。
61
+ - 是否允许少量跑题、半成型的想法、不对称的句子。
62
+
63
+ 强行输出“干净但无灵魂”的文本,与未处理的 AI 文本同罪。
64
+
65
+ ## When To Use
66
+
67
+ - 中文公众号、博客、专栏、视频口播稿、品牌内容、知识型长帖
68
+ - 计算机技术分享、产品复盘、架构说明、故障排查文章
69
+ - 基督教讲道稿、神学分享、灵修说明、牧养型长文
70
+ - 已有初稿,但读起来“太顺、太满、太像 AI”
71
+ - 想从“概括正确”改成“表达自然、判断鲜明、细节可信”
72
+
73
+ ## When Not To Use
74
+
75
+ - 法务、合同、制度、公文、论文摘要等必须保持强正式文体的文本
76
+ - 用户明确要求“SEO 模板风格”“标准化 PR 口径”或“官方公告腔”
77
+ - 核心问题是事实不足、论证空心、资料缺失 → 先用 `content-research-writer` 补证据
78
+
79
+ ## Working Modes
80
+
81
+ 未指定时默认 `standard`。
82
+
83
+ | Mode | Use Case | Rewrite Strength |
84
+ |------|----------|------------------|
85
+ | `light` | 只去掉明显 AI 腔,不改结构 | Low |
86
+ | `standard` | 调整段落、句式、连接方式和措辞 | Medium |
87
+ | `deep` | 重写开头、中段推进和结尾逻辑 | High |
88
+ | `voice-lock` | 强锁定作者现有语气,只修机器感 | Medium |
89
+
90
+ ## Output Contract
91
+
92
+ 默认输出三段;用户只说“直接改”时只给改写结果。
93
+
94
+ ```markdown
95
+ ## AI味诊断
96
+ - [Wikipedia 分类: 信号名] 具体问题(引用原文片段)
97
+ - 最多 3-5 条,挑最强的
98
+
99
+ ## 改写版本
100
+ [rewritten text]
101
+
102
+ ## 处理说明
103
+ - 保留了什么
104
+ - 重点改了什么(按 Wikipedia 分类列动作)
105
+ - 还有哪些建议补事实/例子
106
+ ```
107
+
108
+ ## Core Workflow
109
+
110
+ ### 1. Lock Constraints
111
+
112
+ 锁定不可动项:事实、数字、术语、引用、目标读者、语气目标、可接受口语度。
113
+
114
+ 用户未说明时默认:受过基础教育的中文互联网读者;自然、克制、有判断;半口语,不堆俚语。
115
+
116
+ ### 2. Cross-Check Against Wikipedia Signs (Mandatory)
117
+
118
+ 打开 `references/wikipedia-signs.md`,按四组扫描原文:
119
+
120
+ - **Group A — Content**: inflated significance / notability listing / -ing superficial analysis / promotional language / vague attribution / outline-style "challenges & future"
121
+ - **Group B — Language**: AI vocabulary density / copulative avoidance / negative parallelism / rule of three / elegant variation
122
+ - **Group C — Style & format**: em-dash overuse / bold overuse / inline-header lists / emoji bullets / curly quotes / title-case headings
123
+ - **Group D — Communication**: sycophancy / canned closures / knowledge-cutoff disclaimers / filler phrases / over-qualification
124
+
125
+ 诊断只保留 3–5 条最强信号;不要把所有触发都列出来。
126
+
127
+ ### 3. Decide Rewrite Strategy
128
+
129
+ 按问题类型选动作,不平均用力:
130
+
131
+ - 套话集中 → 优先删模板句、空洞总结
132
+ - 机械结构 → 优先打散段落和连接顺序
133
+ - 像客服稿 → 优先补判断、减官话、换动词
134
+ - 像 AI 解释题 → 优先把抽象概念落到场景、动作、后果
135
+
136
+ ### 4. Rewrite By Paragraph Function
137
+
138
+ - **开头**:尽快进入具体问题、冲突、判断。
139
+ - **中段**:每段只推进一个关键意思。
140
+ - **举例段**:能具体就具体;没有例子时宁可收缩判断,不要捏造。
141
+ - **结尾**:留一个判断、后果或余味,不必复述全文。
142
+
143
+ ### 5. Apply Chinese-First Rewrite Rules
144
+
145
+ 1. 抽象评价 → 可感知的差异
146
+ 2. 名词中心句 → 动作中心句
147
+ 3. 套装连接词(首先/其次/再次)→ 自然推进
148
+ 4. 平均句长 → 长短交错
149
+ 5. 无风险正确 → 有边界的判断
150
+ 6. 过度总结 → 收束但不封死
151
+
152
+ 详细中文短语清单与前后对照见 `references/chinese-patterns.md`。
153
+
154
+ ### 6. Re-Scan & Final Safety Checks
155
+
156
+ 交付前再过一遍 Wikipedia 分类法,并自检:
157
+
158
+ - 每段是否至少说出一个不可随意替换的东西
159
+ - 任意一句删掉后文章是否仍完全不受影响(说明这句是 filler)
160
+ - 是否误删事实、条件、术语
161
+ - 是否把专业稿强行改成“轻飘口语”
162
+ - 是否新增了用户没提供的例子、数据、经历(**禁止**)
163
+
164
+ ## Domain Safeguards
165
+
166
+ ### A. 计算机技术分享
167
+
168
+ 保护:代码块、命令、配置项、API 名、库名、版本号、错误信息、故障链路、性能数字、刻意保留的精确限定词。
169
+
170
+ 改写重点:去“背景铺垫型空话”,更快进入问题;抽象收益 → 工程后果(延迟、复杂度、维护成本);保留术语,不洗平。
171
+
172
+ 禁止:改代码语义;合并丢步骤顺序;把报错/命令/配置键改近义词;把工程判断放大成不准确的结论。
173
+
174
+ ### B. 基督教讲道与神学分享
175
+
176
+ 保护:经文引用、章节号、关键措辞、神学立场、教义边界、释经逻辑、牧养语气中的庄重与节制。
177
+
178
+ 改写重点:去模板化引言不稀释属灵重量;推进更像真实宣讲而非答题分点;保留敬虔、谦卑和边界感,不改成轻松鸡汤。
179
+
180
+ 禁止:改动经文原意或换松散意译;把谨慎神学表述改武断;把讲道改营销文;为“自然”削弱敬畏、悔改、恩典、十字架等核心语义。
181
+
182
+ 完整领域 playbook 见 `references/domain-playbooks.md`。
183
+
184
+ ## Pre-Delivery Quick Checklist
185
+
186
+ - [ ] Wikipedia 四组分类已逐组扫过原文
187
+ - [ ] 连续三句长度相同?打断其中一个
188
+ - [ ] 段尾是否每次都给“漂亮总结”?换收束方式
189
+ - [ ] 揭示前是否有破折号?删
190
+ - [ ] 是否解释了一个根本不需要解释的隐喻?删
191
+ - [ ] 是否出现“此外/此外/然而”整齐排队?删大半
192
+ - [ ] 三段式列举?改两项或四项
193
+ - [ ] 改写后是否还能听见一个真人?听不到 → 回到 Personality & Soul
194
+
195
+ ## Optional Quality Score (1–10 / 50)
196
+
197
+ 仅在用户要求评分或多版本对比时输出:
198
+
199
+ | 维度 | 评估问题 | 得分 |
200
+ |------|----------|------|
201
+ | 直接性 | 直接陈述还是绕圈宣告 | /10 |
202
+ | 节奏 | 句长是否变化 | /10 |
203
+ | 信任度 | 是否尊重读者智慧 | /10 |
204
+ | 真实性 | 是否听起来像真人 | /10 |
205
+ | 精炼度 | 还有冗余可删吗 | /10 |
206
+ | **总分** | | **/50** |
207
+
208
+ 判定:≥45 优秀;35–44 仍可优化;<35 重写。
209
+
210
+ ## Anti-Patterns
211
+
212
+ - 为“像人写的”而虚构经历、情绪、对话
213
+ - 把行业文章改成网络段子
214
+ - 只换同义词不改句法和推进
215
+ - 把所有连接词删光导致逻辑断裂
216
+ - 把原文克制风格误判成 AI 味
217
+ - 全部改成短句,形成另一种模板感
218
+ - 跳过 Wikipedia 分类法,凭直觉判断 AI 味
219
+
220
+ ## Composition With Other Skills
221
+
222
+ 1. 资料不足、论点发虚 → 先用 `external-context` / `document-specialist` 补证据,再回来去 AI 味
223
+ 2. 文章结构混乱 → 先 `plan` 梳理提纲
224
+ 3. 长篇创作、人物口吻一致性高 → 配合 `writer-memory`
225
+ 4. 完成改写后默认不要上长篇写作课,除非用户问
226
+
227
+ ## Trigger Examples
228
+
229
+ - “给这篇文章去 AI 味,尤其是中文腔调别那么像模板。”
230
+ - “把这段公众号稿改得更像真人写的。”
231
+ - “不要改意思,只把机器感降下来。”
232
+ - “把这篇技术分享改得自然一点,但代码块、命令和术语都别动。”
233
+ - “把这篇讲道稿改得像真人讲出来的,保留经文和神学立场。”
234
+ - “帮我 humanize 一下这篇中文草稿。”
235
+ - “这篇文章太像 AI 写的了,重写但别油腻。”
236
+
237
+ ## Additional Resources
238
+
239
+ - `references/wikipedia-signs.md` — Wikipedia 53 类信号 + 中文映射(**强制参考**)
240
+ - `references/chinese-patterns.md` — 中文常见套话、替换方式、前后对照
241
+ - `references/domain-playbooks.md` — 技术 / 讲道领域的保护与禁止动作
242
+ - Upstream taxonomy: <https://en.wikipedia.org/wiki/Wikipedia:Signs_of_AI_writing>
243
+ - Structural inspiration: <https://github.com/op7418/Humanizer-zh>
@@ -0,0 +1,152 @@
1
+ # Chinese De-AI Writing Patterns
2
+
3
+ 本文件提供中文“去 AI 味”时最常见的信号、替换动作和改写示例。只在需要细化判断或做大幅改稿时加载。
4
+
5
+ ## 1. High-Risk Signals
6
+
7
+ | Signal | Why It Feels AI | Preferred Move |
8
+ |--------|------------------|----------------|
9
+ | “在当今...背景下” | 大背景开头,谁都能套 | 直接进入问题、场景或判断 |
10
+ | “随着...不断发展” | 信息密度低,时间感假 | 说清到底变了什么 |
11
+ | “首先/其次/再次/最后” | 结构整齐到像答题卡 | 改成自然推进或重组段落 |
12
+ | “值得注意的是/不难发现/可以说” | 语气占位词,删掉不伤义 | 直接说结论 |
13
+ | “赋能/驱动/重塑/闭环” | 商业套话,落不到动作 | 换成具体动作或结果 |
14
+ | “不仅...还...更...”连续出现 | 修辞模板过密 | 只保留一个重点关系 |
15
+ | 结尾“综上所述” | 太像考试总结 | 用判断、代价或悬念收束 |
16
+
17
+ ## 2. Rewrite Moves
18
+
19
+ ### Move A: Delete Framing, Keep Meaning
20
+
21
+ 原句:
22
+ > 在当前内容生产方式不断演进的背景下,越来越多的创作者开始关注文章的人性化表达。
23
+
24
+ 改写:
25
+ > 现在不少创作者开始在意一件事:文章别写得太像机器拼出来的。
26
+
27
+ 动作说明:
28
+ - 删掉“背景下”
29
+ - 把“内容生产方式不断演进”这种空背景压缩掉
30
+ - 用读者能立刻理解的话进入主题
31
+
32
+ ### Move B: Replace Abstract Evaluation With Observable Difference
33
+
34
+ 原句:
35
+ > 这种写法能够有效提升内容的温度感与真实感。
36
+
37
+ 改写:
38
+ > 这样写的区别在于,读者能更快听见一个人的判断,而不是一套完整但空心的表达。
39
+
40
+ 动作说明:
41
+ - 少用“温度感、真实感”这类抽象评价
42
+ - 改成“读者实际感受到什么”
43
+
44
+ ### Move C: Turn Noun Chains Into Action Chains
45
+
46
+ 原句:
47
+ > 企业需要完成流程优化、效率提升和体验升级。
48
+
49
+ 改写:
50
+ > 企业真正要做的,是把流程里那些来回确认、重复录入、长时间等待的环节拿掉。
51
+
52
+ 动作说明:
53
+ - 不罗列目标名词
54
+ - 直接说动作对象
55
+
56
+ ### Move D: Break Uniform Sentence Rhythm
57
+
58
+ 原句:
59
+ > 它可以帮助团队统一标准。它也可以提升执行效率。它还可以减少沟通成本。它最终能够形成协同闭环。
60
+
61
+ 改写:
62
+ > 它先解决的是标准不统一。标准一旦统一,执行就快了,沟通里的反复确认也会少很多。所谓“闭环”,本质上就是这些断点被补上了。
63
+
64
+ 动作说明:
65
+ - 合并同类句
66
+ - 拉开句长差异
67
+ - 把最后一句的套话拆开解释
68
+
69
+ ## 3. Chinese Phrase Cleanup
70
+
71
+ 以下短语不是绝对禁用,但出现时要优先审视:
72
+
73
+ - 在当今
74
+ - 在...背景下
75
+ - 随着...发展
76
+ - 值得注意的是
77
+ - 不难发现
78
+ - 由此可见
79
+ - 可以说
80
+ - 需要指出的是
81
+ - 从某种意义上说
82
+ - 最终实现
83
+ - 高质量发展
84
+ - 赋能
85
+ - 抓手
86
+ - 路径
87
+ - 形成闭环
88
+ - 全方位
89
+ - 多维度
90
+
91
+ 处理规则:
92
+ - 能删就删
93
+ - 不能删就具体化
94
+ - 具体化不了就承认信息不够,不硬写
95
+
96
+ ## 4. Tone Profiles
97
+
98
+ ### 克制型中文
99
+
100
+ 适用于评论、专栏、行业分析:
101
+ - 词不夸张
102
+ - 判断清楚
103
+ - 少感叹
104
+ - 少“情绪词+抽象词”组合
105
+
106
+ ### 半口语型中文
107
+
108
+ 适用于公众号、视频口播、创作者内容:
109
+ - 允许“其实、说白了、问题在于”这类自然连接
110
+ - 不要堆网络黑话
111
+ - 不要为了亲切感而装随意
112
+
113
+ ### 专业型中文
114
+
115
+ 适用于产品、商业、技术文章:
116
+ - 保留术语
117
+ - 去掉假大空业务词
118
+ - 多写机制、条件、结果
119
+
120
+ ## 5. Ending Strategies
121
+
122
+ 中文文章结尾不要只会复述全文。优先选下面三种之一:
123
+
124
+ 1. **判断式结尾**
125
+ - 点明真正分水岭
126
+ 2. **代价式结尾**
127
+ - 说明不这么做会付出什么成本
128
+ 3. **开放式结尾**
129
+ - 留一个未完全关闭的问题或余味
130
+
131
+ 示例:
132
+
133
+ 原句:
134
+ > 总而言之,去除 AI 味对于提升文章质量具有重要意义。
135
+
136
+ 改写:
137
+ > 文章真正怕的不是像 AI,而是没有人站在里面说话。机器感只是表象,空心才是问题。
138
+
139
+ ## 6. Safety Rules
140
+
141
+ “去 AI 味”不是以下行为的借口:
142
+
143
+ - 编造细节
144
+ - 捏造故事
145
+ - 添加未经用户提供的数据
146
+ - 把中性内容改成强立场内容
147
+ - 把谨慎表述改成过度自信
148
+
149
+ 保底原则:
150
+ - 事实优先于风格
151
+ - 原意优先于花样
152
+ - 边界优先于流畅
@@ -0,0 +1,121 @@
1
+ # Chinese AI-Sounding Prose Signals
2
+
3
+ Use this reference when diagnosing or rewriting Chinese text that feels obviously machine-generated.
4
+
5
+ ## Signal Table
6
+
7
+ | Signal | Typical form | Why it reads like AI | Better move |
8
+ |---|---|---|---|
9
+ | Macro background opener | 在当今...背景下;随着...不断发展 | sounds preloaded, low-information | enter through the real problem, choice, or consequence |
10
+ | Transition scaffold | 首先、其次、再次、最后、总之 | exposes outline skeleton too directly | keep only the transitions that carry logic |
11
+ | Abstract noun stack | 赋能、助力、推动、实现、构建 | replaces action with policy language | swap in who did what and what changed |
12
+ | Symmetric slogan sentence | 既要...又要...;不是...而是... | feels auto-balanced rather than argued | make the primary point explicit and demote the rest |
13
+ | Empty uplift ending | 值得关注;值得思考;具有重要意义 | closes with attitude instead of thought | end on a sharper claim, question, or implication |
14
+ | Uniform cadence | every sentence same length and completeness | feels statistically smoothed | mix short, medium, and compressed sentences |
15
+ | Fake comprehensiveness | trying to cover every angle in one paragraph | feels risk-averse and unowned | choose the two points that actually matter |
16
+ | Detached neutrality | no viewpoint, no pressure, no stake | reads like generated summary | allow mild stance where the source already implies one |
17
+
18
+ ## Chinese-Specific Smell Words
19
+
20
+ These are not forbidden words. They become suspicious when stacked, repeated, or used without concrete payload.
21
+
22
+ - 在当今
23
+ - 随着
24
+ - 值得注意的是
25
+ - 不难发现
26
+ - 从某种意义上说
27
+ - 赋能
28
+ - 助力
29
+ - 高质量发展
30
+ - 全方位
31
+ - 多维度
32
+ - 深层次
33
+ - 长期来看
34
+ - 总的来说
35
+ - 综上所述
36
+
37
+ ## Rewrite Moves
38
+
39
+ ### 1. Remove the runway
40
+
41
+ Before:
42
+
43
+ ```text
44
+ 在当前内容创作生态不断变化的背景下,写作者面临着越来越复杂的表达挑战。
45
+ ```
46
+
47
+ After:
48
+
49
+ ```text
50
+ 现在写东西,最难的不是信息不够,而是话越来越像套话。
51
+ ```
52
+
53
+ ### 2. Replace noun piles with motion
54
+
55
+ Before:
56
+
57
+ ```text
58
+ 团队需要通过机制优化和流程协同,推动沟通效率的持续提升。
59
+ ```
60
+
61
+ After:
62
+
63
+ ```text
64
+ 团队先把会开短、把责任分清,沟通效率自然就上来了。
65
+ ```
66
+
67
+ ### 3. Break false symmetry
68
+
69
+ Before:
70
+
71
+ ```text
72
+ 个人表达既要保持真实,也要兼顾专业,还要体现差异化价值。
73
+ ```
74
+
75
+ After:
76
+
77
+ ```text
78
+ 先把真实感立住,再谈专业和差异化。不然后两者只会显得像包装。
79
+ ```
80
+
81
+ ### 4. Kill the empty ending
82
+
83
+ Before:
84
+
85
+ ```text
86
+ 总的来说,提升表达能力,是每一个写作者都应当关注的重要课题。
87
+ ```
88
+
89
+ After:
90
+
91
+ ```text
92
+ 说到底,读者不是在找一段正确的话,而是在找一句有人在场的话。
93
+ ```
94
+
95
+ ## Do / Do Not
96
+
97
+ Do:
98
+
99
+ - keep meaning stable
100
+ - prefer concrete verbs
101
+ - cut duplicated explanation
102
+ - keep one or two sharp sentences
103
+ - let paragraph endings push forward
104
+
105
+ Do not:
106
+
107
+ - fake intimacy
108
+ - add autobiographical detail
109
+ - fill the text with slang particles
110
+ - make every sentence short just to look "human"
111
+ - replace one template with another
112
+
113
+ ## Quick Review Checklist
114
+
115
+ Use this checklist before returning a rewrite:
116
+
117
+ 1. Has the generic opener been cut or sharpened?
118
+ 2. Have abstract nouns been reduced?
119
+ 3. Does each paragraph move forward instead of re-summing itself?
120
+ 4. Is there at least some variation in sentence rhythm?
121
+ 5. Has any new fact, example, or emotion been introduced by accident?
@@ -0,0 +1,120 @@
1
+ # Domain Playbooks For De-AI Writing
2
+
3
+ Use this reference when the draft belongs to a domain where style cleanup can easily damage meaning.
4
+
5
+ ## 1. Computer Technical Sharing
6
+
7
+ ### What Must Not Move
8
+
9
+ Keep these elements stable unless the user explicitly asks for rewriting them:
10
+ - code blocks
11
+ - shell commands
12
+ - config keys and file paths
13
+ - version numbers
14
+ - error messages
15
+ - API names, class names, function names
16
+ - benchmark numbers and comparison baselines
17
+
18
+ ### Common AI Markers In Technical Chinese
19
+
20
+ Symptoms:
21
+ - long background paragraphs before the actual problem
22
+ - repeated claims such as `提升效率`, `降低门槛`, `增强稳定性` without mechanism
23
+ - abstract architecture language with no system boundary
24
+ - conclusion-heavy endings that restate obvious engineering principles
25
+
26
+ Rewrite move:
27
+ - enter the failure mode or technical question earlier
28
+ - replace value claims with mechanism, tradeoff, or cost
29
+ - make subject and system boundary explicit
30
+ - preserve exact steps and constraints
31
+
32
+ ### Good Rewrite Direction
33
+
34
+ Before:
35
+ `随着云原生技术的不断发展,Kubernetes 已经在现代基础设施中发挥着越来越重要的作用,因此掌握其故障排查能力具有重要意义。`
36
+
37
+ After:
38
+ `Kubernetes 当然重要,但技术分享没必要从这句开始。真正有用的是:Pod 起不来时,先看什么,怎么排除,哪一步最容易误判。`
39
+
40
+ Why:
41
+ - removes empty industry framing
42
+ - gets to the reader's operational problem faster
43
+ - sounds like an engineer with priorities
44
+
45
+ ### Tone Target
46
+
47
+ Prefer:
48
+ - precise
49
+ - restrained
50
+ - experience-backed
51
+ - concrete about cost and failure
52
+
53
+ Avoid:
54
+ - inspirational tech evangelism
55
+ - business jargon in place of engineering explanation
56
+ - casual slang that weakens precision
57
+
58
+ ## 2. Christian Sermons And Theology Writing
59
+
60
+ ### What Must Not Move
61
+
62
+ Keep these elements stable unless the user explicitly asks for doctrinal or stylistic adjustment:
63
+ - scripture references and quotations
64
+ - theological terms with doctrinal weight
65
+ - confessional distinctions
66
+ - exegetical sequence
67
+ - pastoral exhortation boundaries
68
+ - liturgical or reverent register where intentionally present
69
+
70
+ ### Common AI Markers In Sermon/Theology Chinese
71
+
72
+ Symptoms:
73
+ - broad opening lines about `在这个充满挑战的时代`
74
+ - three-point sermon structure that sounds like a school answer sheet
75
+ - repeated moral conclusions without textual depth
76
+ - pastoral warmth rendered as generic encouragement
77
+ - theological claims softened into vague life advice
78
+
79
+ Rewrite move:
80
+ - enter through the text, tension, or pastoral burden
81
+ - keep the sermon movement, but reduce answer-sheet scaffolding
82
+ - sharpen doctrinal language without exaggeration
83
+ - preserve reverence and pastoral gravity
84
+
85
+ ### Good Rewrite Direction
86
+
87
+ Before:
88
+ `在这个快速变化的时代,我们每个人都面临许多挑战,因此更需要来到神的面前,重新思想信仰对我们生命的重要意义。`
89
+
90
+ After:
91
+ `我们不是因为时代变化太快,才需要回到神面前。我们本来就离不开祂。变化只是把这个事实逼得更明显。`
92
+
93
+ Why:
94
+ - removes generic era framing
95
+ - keeps the spiritual weight
96
+ - sounds more like a lived exhortation than a template introduction
97
+
98
+ ### Tone Target
99
+
100
+ Prefer:
101
+ - reverent
102
+ - pastorally warm
103
+ - doctrinally bounded
104
+ - emotionally honest but not sentimental
105
+
106
+ Avoid:
107
+ - motivational-speaker cadence
108
+ - secular self-help framing
109
+ - slang that trivializes sacred themes
110
+ - overconfident certainty where the original was careful
111
+
112
+ ## 3. Shared Safety Questions
113
+
114
+ Before returning domain-heavy rewrites, check:
115
+ - Did any exact term lose precision?
116
+ - Did any doctrinal or technical boundary get blurred?
117
+ - Did the rewrite become more stylish but less trustworthy?
118
+ - Did the text become easier to read at the cost of being less true?
119
+
120
+ If the answer may be yes, surface the risk instead of silently polishing past it.