@guru-ai-product/ai-product-kit 0.2.251117191453 → 0.2.251117213210

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/setup.js CHANGED
@@ -284,19 +284,50 @@ function mergeAgentsContent(existingContent, newTemplate) {
284
284
  function parseTemplate(template) {
285
285
  const parts = {};
286
286
 
287
- const projectOverviewMatch = template.match(/# Project Overview\s*\n([\s\S]*?)(?=\n## Conventions|<skills_system|$)/);
288
- if (projectOverviewMatch) {
289
- parts.projectOverview = `# Project Overview\n${projectOverviewMatch[1].trim()}`;
287
+ const projectOverviewIndex = template.indexOf('# Project Overview');
288
+ if (projectOverviewIndex !== -1) {
289
+ const afterProjectOverview = template.substring(projectOverviewIndex);
290
+ const conventionsIndex = afterProjectOverview.indexOf('\n## Conventions');
291
+ if (conventionsIndex !== -1) {
292
+ parts.projectOverview = afterProjectOverview.substring(0, conventionsIndex).trim();
293
+ } else {
294
+ const skillsSystemTagMatch = afterProjectOverview.match(/<skills_system[\s>]/);
295
+ if (skillsSystemTagMatch) {
296
+ const skillsSystemTagIndex = afterProjectOverview.indexOf(skillsSystemTagMatch[0]);
297
+ parts.projectOverview = afterProjectOverview.substring(0, skillsSystemTagIndex).trim();
298
+ } else {
299
+ parts.projectOverview = afterProjectOverview.trim();
300
+ }
301
+ }
290
302
  }
291
303
 
292
- const conventionsMatch = template.match(/## Conventions\s*\n([\s\S]*?)(?=\n## Skills Bundle Access|<skills_system|$)/);
293
- if (conventionsMatch) {
294
- parts.conventions = `## Conventions\n${conventionsMatch[1].trim()}`;
304
+ const conventionsIndex = template.indexOf('## Conventions');
305
+ if (conventionsIndex !== -1) {
306
+ const afterConventions = template.substring(conventionsIndex);
307
+ const skillsBundleAccessIndex = afterConventions.indexOf('\n## Skills Bundle Access');
308
+ if (skillsBundleAccessIndex !== -1) {
309
+ parts.conventions = afterConventions.substring(0, skillsBundleAccessIndex).trim();
310
+ } else {
311
+ const skillsSystemTagMatch = afterConventions.match(/<skills_system[\s>]/);
312
+ if (skillsSystemTagMatch) {
313
+ const skillsSystemTagIndex = afterConventions.indexOf(skillsSystemTagMatch[0]);
314
+ parts.conventions = afterConventions.substring(0, skillsSystemTagIndex).trim();
315
+ } else {
316
+ parts.conventions = afterConventions.trim();
317
+ }
318
+ }
295
319
  }
296
320
 
297
- const skillsBundleAccessMatch = template.match(/## Skills Bundle Access\s*\n([\s\S]*?)(?=<skills_system|$)/);
298
- if (skillsBundleAccessMatch) {
299
- parts.skillsBundleAccess = `## Skills Bundle Access\n${skillsBundleAccessMatch[1].trim()}`;
321
+ const skillsBundleAccessIndex = template.indexOf('## Skills Bundle Access');
322
+ if (skillsBundleAccessIndex !== -1) {
323
+ const afterSkillsBundleAccess = template.substring(skillsBundleAccessIndex);
324
+ const skillsSystemTagMatch = afterSkillsBundleAccess.match(/<skills_system[\s>]/);
325
+ if (skillsSystemTagMatch) {
326
+ const skillsSystemTagIndex = afterSkillsBundleAccess.indexOf(skillsSystemTagMatch[0]);
327
+ parts.skillsBundleAccess = afterSkillsBundleAccess.substring(0, skillsSystemTagIndex).trim();
328
+ } else {
329
+ parts.skillsBundleAccess = afterSkillsBundleAccess.trim();
330
+ }
300
331
  }
301
332
 
302
333
  const skillsSystemMatch = template.match(/<skills_system[\s\S]*?<\/skills_system>/);
@@ -20,77 +20,77 @@ Use these MCP tools to load a Skill by name. The server maps known Skill names t
20
20
 
21
21
  <skill>
22
22
  <name>aipk_aso-new-release</name>
23
- <description>This skill should be used when generating ASO content for a new app version, covering update notes and refreshed store asset guidance.</description>
23
+ <description>Workflow for crafting App Store/Google Play release notes and store asset briefs for a new version; use when shipping a release and avoid internal-only notes or unrelated marketing assets.</description>
24
24
  <tool>product_kit_skill</tool>
25
25
  <arguments>{"skill_name": "aipk_aso-new-release"}</arguments>
26
26
  </skill>
27
27
 
28
28
  <skill>
29
29
  <name>aipk_format-requirement-pages-with-design</name>
30
- <description>Format requirement document pages with design images into standardized tables. Use when requirement documents contain design images and need to be organized into a two-column table format (page description | design image) following the project's table formatting standards.</description>
30
+ <description>Format requirement document pages that include design images into standardized two-column tables so page descriptions and visuals align with project standards; use when visuals exist, not when no design images or unrelated doc tasks are needed.</description>
31
31
  <tool>product_kit_skill</tool>
32
32
  <arguments>{"skill_name": "aipk_format-requirement-pages-with-design"}</arguments>
33
33
  </skill>
34
34
 
35
35
  <skill>
36
36
  <name>aipk_initiative-planning</name>
37
- <description>Comprehensive workflow for evaluating, scoping, and approving new product initiatives.</description>
37
+ <description>Structure initiative evaluation and scoping to align strategy, feasibility, and risk before formal requirements; use for new product or major feature planning and steer clear of design sync, doc tweaks, or execution-phase work.</description>
38
38
  <tool>product_kit_skill</tool>
39
39
  <arguments>{"skill_name": "aipk_initiative-planning"}</arguments>
40
40
  </skill>
41
41
 
42
42
  <skill>
43
43
  <name>aipk_requirements-changes</name>
44
- <description>Templates, prompts, and procedures for documenting and reviewing requirement changes.</description>
44
+ <description>Templates, prompts, and procedures for documenting requirement changes, including structured overviews and diff analysis; use for any change to requirement docs and avoid new requirement drafting or unrelated engineering work.</description>
45
45
  <tool>product_kit_skill</tool>
46
46
  <arguments>{"skill_name": "aipk_requirements-changes"}</arguments>
47
47
  </skill>
48
48
 
49
49
  <skill>
50
50
  <name>aipk_requirements-documentation</name>
51
- <description>Create new requirement documents or iterate on existing ones from scratch. Use this ONLY when the task involves drafting brand-new requirement documents or conducting requirement reviews WITHOUT starting from design assets. If the task involves updating requirements from design mockups or modifying docs based on visual designs, use the `skills/update-requirements-from-design` skill instead.</description>
51
+ <description>Guide for drafting new requirement docs or iterating existing ones textually; apply when starting from scratch or doing template-compliant text updates without design assets, and avoid design-driven updates or implementation/test tasks.</description>
52
52
  <tool>product_kit_skill</tool>
53
53
  <arguments>{"skill_name": "aipk_requirements-documentation"}</arguments>
54
54
  </skill>
55
55
 
56
56
  <skill>
57
57
  <name>aipk_requirements-intake</name>
58
- <description>Intelligent intake pipeline for gathering and consolidating product requirements from multiple sources.</description>
58
+ <description>Structured intake pipeline combining Gemini DeepResearch with multi-platform data to discover product needs; use during early-stage opportunity validation and avoid it once requirements are defined or when design/dev tasks begin.</description>
59
59
  <tool>product_kit_skill</tool>
60
60
  <arguments>{"skill_name": "aipk_requirements-intake"}</arguments>
61
61
  </skill>
62
62
 
63
63
  <skill>
64
64
  <name>aipk_update-requirements-from-design</name>
65
- <description>Update requirement documents based on design mockups (composite boards or individual UI frames). Use this when you need to split composite boards or directly align single/multiple standalone UI images with requirement docs, including syncing visuals, verifying differences, and generating change records.</description>
65
+ <description>Sync requirement docs with design mockups (composite or standalone UI frames) via split/mapping scripts, capturing visual alignment and change records; use this when design assets drive the update and avoid pure text-only work.</description>
66
66
  <tool>product_kit_skill</tool>
67
67
  <arguments>{"skill_name": "aipk_update-requirements-from-design"}</arguments>
68
68
  </skill>
69
69
 
70
70
  <skill>
71
71
  <name>development</name>
72
- <description>Development phase index pointing to the single authoritative implementation plan template.</description>
72
+ <description>Index for the single authoritative implementation plan template covering development execution, so use it when planning dev deliverables and not for unrelated coding or testing notes.</description>
73
73
  <tool>product_kit_skill</tool>
74
74
  <arguments>{"skill_name": "aipk_development"}</arguments>
75
75
  </skill>
76
76
 
77
77
  <skill>
78
78
  <name>init-project</name>
79
- <description>Initialize the project Agents playbook, sync the skills inventory into AGENTS.md/templates, and verify the workspace includes a complete AGENTS.md file.</description>
79
+ <description>Ensure AGENTS.md and skills inventories match the template during onboarding or audits; use for Agents initwork and skip it for ordinary business content or document creation.</description>
80
80
  <tool>product_kit_skill</tool>
81
81
  <arguments>{"skill_name": "aipk_init_project"}</arguments>
82
82
  </skill>
83
83
 
84
84
  <skill>
85
85
  <name>skill-creation</name>
86
- <description>Standards and practices for creating new Agent Skills that extend Claude with reusable workflows, documentation, and tooling assets.</description>
86
+ <description>Playbook for creating or refreshing Skills so metadata, templates, and scripts meet Claude’s expectations; use when scaffolding Skills or syncing bundles, not for unrelated product content.</description>
87
87
  <tool>product_kit_skill</tool>
88
88
  <arguments>{"skill_name": "aipk_skill_generate"}</arguments>
89
89
  </skill>
90
90
 
91
91
  <skill>
92
92
  <name>tool_prompts</name>
93
- <description>Directory of curated tool prompts, their core strengths, calling scenarios, input/output expectations, and the Markdown files that describe how to run them.</description>
93
+ <description>Catalog of curated tool prompts with strengths, scenarios, and I/O rules for reuse; refer to it when consuming or extending prompts, not when writing unrelated product docs or new Skills.</description>
94
94
  <tool>product_kit_skill</tool>
95
95
  <arguments>{"skill_name": "aipk_tool_prompts"}</arguments>
96
96
  </skill>
package/mcp/src/server.js CHANGED
@@ -33,16 +33,16 @@ const PRODUCT_KIT_SKILLS = {
33
33
 
34
34
  // Skill 描述映射
35
35
  const SKILL_DESCRIPTIONS = {
36
- "aipk_aso-new-release": "This skill should be used when generating ASO content for a new app version, covering update notes and refreshed store asset guidance.",
37
- "aipk_development": "Development phase index pointing to the single authoritative implementation plan template.",
38
- "aipk_format-requirement-pages-with-design": "Format requirement document pages with design images into standardized tables. Use when requirement documents contain design images and need to be organized into a two-column table format (page description | design image) following the project's table formatting standards.",
39
- "aipk_initiative-planning": "Comprehensive workflow for evaluating, scoping, and approving new product initiatives.",
40
- "aipk_requirements-changes": "Templates, prompts, and procedures for documenting and reviewing requirement changes.",
41
- "aipk_requirements-documentation": "Create new requirement documents or iterate on existing ones from scratch. Use this ONLY when the task involves drafting brand-new requirement documents or conducting requirement reviews WITHOUT starting from design assets. If the task involves updating requirements from design mockups or modifying docs based on visual designs, use the `skills/update-requirements-from-design` skill instead.",
42
- "aipk_requirements-intake": "Intelligent intake pipeline for gathering and consolidating product requirements from multiple sources.",
43
- "aipk_skill_generate": "Standards and practices for creating new Agent Skills that extend Claude with reusable workflows, documentation, and tooling assets.",
44
- "aipk_tool_prompts": "Directory of curated tool prompts, their core strengths, calling scenarios, input/output expectations, and the Markdown files that describe how to run them.",
45
- "aipk_update-requirements-from-design": "Update requirement documents based on design mockups (composite boards or individual UI frames). Use this when you need to split composite boards or directly align single/multiple standalone UI images with requirement docs, including syncing visuals, verifying differences, and generating change records.",
36
+ "aipk_aso-new-release": "Workflow for crafting App Store/Google Play release notes and store asset briefs for a new version; use when shipping a release and avoid internal-only notes or unrelated marketing assets.",
37
+ "aipk_development": "Index for the single authoritative implementation plan template covering development execution, so use it when planning dev deliverables and not for unrelated coding or testing notes.",
38
+ "aipk_format-requirement-pages-with-design": "Format requirement document pages that include design images into standardized two-column tables so page descriptions and visuals align with project standards; use when visuals exist, not when no design images or unrelated doc tasks are needed.",
39
+ "aipk_initiative-planning": "Structure initiative evaluation and scoping to align strategy, feasibility, and risk before formal requirements; use for new product or major feature planning and steer clear of design sync, doc tweaks, or execution-phase work.",
40
+ "aipk_requirements-changes": "Templates, prompts, and procedures for documenting requirement changes, including structured overviews and diff analysis; use for any change to requirement docs and avoid new requirement drafting or unrelated engineering work.",
41
+ "aipk_requirements-documentation": "Guide for drafting new requirement docs or iterating existing ones textually; apply when starting from scratch or doing template-compliant text updates without design assets, and avoid design-driven updates or implementation/test tasks.",
42
+ "aipk_requirements-intake": "Structured intake pipeline combining Gemini DeepResearch with multi-platform data to discover product needs; use during early-stage opportunity validation and avoid it once requirements are defined or when design/dev tasks begin.",
43
+ "aipk_skill_generate": "Playbook for creating or refreshing Skills so metadata, templates, and scripts meet Claude’s expectations; use when scaffolding Skills or syncing bundles, not for unrelated product content.",
44
+ "aipk_tool_prompts": "Catalog of curated tool prompts with strengths, scenarios, and I/O rules for reuse; refer to it when consuming or extending prompts, not when writing unrelated product docs or new Skills.",
45
+ "aipk_update-requirements-from-design": "Sync requirement docs with design mockups (composite or standalone UI frames) via split/mapping scripts, capturing visual alignment and change records; use this when design assets drive the update and avoid pure text-only work.",
46
46
  "aipk_init_project": "Initialize the project Agents playbook, sync the skills inventory into AGENTS.md/templates, and verify the workspace includes a complete AGENTS.md file.",};
47
47
 
48
48
  const server = new Server(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guru-ai-product/ai-product-kit",
3
- "version": "0.2.251117191453",
3
+ "version": "0.2.251117213210",
4
4
  "description": "Sync the AI Product Kit Skill bundle through npx without cloning the repository.",
5
5
  "bin": {
6
6
  "ai-product-kit": "bin/setup.js",
@@ -1,9 +1,9 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
7
  | `references/aso-update-notes-prompt.md` | 2025-11-12T10:41:15.857Z |
8
8
  | `references/aso-update-notes-template.md` | 2025-11-12T10:41:15.857Z |
9
- | `SKILL.md` | 2025-11-17T09:13:53.653Z |
9
+ | `SKILL.md` | 2025-11-17T13:24:42.134Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: aipk_aso-new-release
3
- description: This skill should be used when generating ASO content for a new app version, covering update notes and refreshed store asset guidance.
3
+ description: Workflow for crafting App Store/Google Play release notes and store asset briefs for a new version; use when shipping a release and avoid internal-only notes or unrelated marketing assets.
4
4
  ---
5
5
 
6
6
  # ASO New Release Skill
7
7
 
8
+ ## Skill Scope
9
+
10
+ **Purpose**: Provide a step-by-step workflow and templates for generating App Store/Google Play update notes and complementary store asset guidance each time a new version ships.
11
+
12
+ **Applicable scenarios**:
13
+ - Launching a new product version that requires narrative-aligned update notes and refreshed store assets.
14
+ - Coordinating keyword-focused copy, visuals, and launch messaging across App Store and Play Store listings.
15
+ - Translating release highlights, UX improvements, or new functionality into persuasive marketing copy for stores.
16
+
17
+ **Not applicable when**:
18
+ - The task is general marketing collateral without a specific app release or store update.
19
+ - You only need internal release notes or engineering change logs.
20
+ - Assets are unrelated to App Store or Google Play listings (e.g., social/PR materials).
21
+
8
22
  Use this skill whenever a product version ships and the team needs polished, on-brand App Store and Google Play content that highlights the release. Follow the steps below to transform raw release inputs into persuasive update copy and actionable store asset briefs.
9
23
 
10
24
  ## When to Use
@@ -1,8 +1,8 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
- | `SKILL.md` | 2025-11-12T10:41:15.855Z |
7
+ | `SKILL.md` | 2025-11-17T13:25:01.244Z |
8
8
  | `templates/实施计划文档.md` | 2025-11-17T09:33:20.784Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: development
3
- description: Development phase index pointing to the single authoritative implementation plan template.
3
+ description: Index for the single authoritative implementation plan template covering development execution, so use it when planning dev deliverables and not for unrelated coding or testing notes.
4
4
  ---
5
5
 
6
6
  # 开发阶段模板索引
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:作为开发阶段唯一规范化资产的索引,明确使用 `实施计划文档` 模板来统一需求对齐、设计联动、开发排期与验收交接等内容。
11
+
12
+ **适用场景**:
13
+ - 准备或更新开发执行计划、实施步骤或验收要求时需要统一格式。
14
+ - 团队需要一个稳定、可复用的文档入口来梳理开发阶段的输出。
15
+ - 需要在变更或复盘中引用开发阶段通用模板时。
16
+
17
+ **不适用场景**:
18
+ - 直接撰写代码、实现细节或测试检查列表的任务(请在具体实施文档或工程目录中完成)。
19
+ - 需要编写与开发计划无关的战略、设计或产品文档。
20
+ - 需要为多个项目分别维护不同结构的开发流程(此处强调单一模板一致性)。
21
+
8
22
  开发阶段目前仅保留一个标准化资产——`实施计划文档` 模板。所有与开发过程相关的说明、Checklist、交付要求都应在该模板中进行维护和引用。
9
23
 
10
24
  ## 可用模板
@@ -1,8 +1,8 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
7
  | `requirement-page-table-format.md` | 2025-11-17T06:21:56.025Z |
8
- | `SKILL.md` | 2025-11-17T09:13:58.040Z |
8
+ | `SKILL.md` | 2025-11-17T13:24:58.161Z |
@@ -1,12 +1,21 @@
1
1
  ---
2
2
  name: aipk_format-requirement-pages-with-design
3
- description: Format requirement document pages with design images into standardized tables. Use when requirement documents contain design images and need to be organized into a two-column table format (page description | design image) following the project's table formatting standards.
3
+ description: Format requirement document pages that include design images into standardized two-column tables so page descriptions and visuals align with project standards; use when visuals exist, not when no design images or unrelated doc tasks are needed.
4
4
  ---
5
5
 
6
6
  # 需求页面表格格式化 Skill
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:把需求文档中的页面说明和设计图按项目规范整理成双列表格,提高页面可读性与格式一致性,确保所有视觉稿都对应明确的说明。
11
+
8
12
  **适用场景**:当需求文档中包含设计图时,将页面说明和设计图按照标准表格格式组织。当你看到任务中提到"将设计图放入表格"、"格式化需求页面"、"整理页面说明和设计图"或类似描述时,立即使用本 Skill。
9
13
 
14
+ **不适用场景**:
15
+ - 文档中无设计图、只是需要纯文本调整的情况。
16
+ - 需要对设计稿本身进行创作或修改,不涉及表格排版。
17
+ - 需要处理需求变动说明、开发或测试内容的工作。
18
+
10
19
  ## 1. 技能定位
11
20
 
12
21
  - **适用场景**:需求文档中包含设计图,需要将页面说明和设计图组织成标准表格格式
@@ -1,10 +1,10 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
7
  | `scripts/check_agents.sh` | 2025-11-13T09:03:47.702Z |
8
8
  | `skill.ini` | 2025-11-13T09:47:02.793Z |
9
- | `SKILL.md` | 2025-11-13T10:06:33.764Z |
10
- | `template/AGENTS_TEMPLATE.md` | 2025-11-17T11:14:53.842Z |
9
+ | `SKILL.md` | 2025-11-17T13:24:45.708Z |
10
+ | `template/AGENTS_TEMPLATE.md` | 2025-11-17T13:32:10.540Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: init-project
3
- description: Initialize the project Agents playbook, sync the skills inventory into AGENTS.md/templates, and verify the workspace includes a complete AGENTS.md file.
3
+ description: Ensure AGENTS.md and skills inventories match the template during onboarding or audits; use for Agents initwork and skip it for ordinary business content or document creation.
4
4
  ---
5
5
 
6
6
  # 项目初始化 Skill
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:确保项目包含完整的 Agents 配置(AGENTS.md、skills 系统区块等),并提供初始化或校验流程,保障新项目在 AI Product Kit 规范下具备可识别的 Agents 指南。
11
+
12
+ **适用场景**:
13
+ - 新项目启动时需要构建或同步 `AGENTS.md` 与 `<skills_system>` 区块。
14
+ - 需要校验现有仓库是否具备完整的 Agents 文件及模板一致性。
15
+ - 维护团队准备对 AGENTS 模板或技能清单进行版本更新。
16
+
17
+ **不适用场景**:
18
+ - 日常的文档写作、需求、设计、开发内容本身(这些应由各自技能处理)。
19
+ - 纯业务内容更新,不涉及 Agents 工作规范。
20
+ - 需要大量定制内容的 AGENTS.md(除 Project Overview 外均需与模板一致)。
21
+
8
22
  ## 1. 技能定位
9
23
 
10
24
  - **适用场景**:初始化新项目、检查现有项目的 Agents 配置、更新项目的 Agents 文档
@@ -1,10 +1,10 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
- | `SKILL.md` | 2025-11-17T09:14:19.526Z |
7
+ | `SKILL.md` | 2025-11-17T13:24:29.546Z |
8
8
  | `template/SWOT分析模板.md` | 2025-11-12T10:41:15.864Z |
9
9
  | `template/产品规划模板.md` | 2025-11-12T10:41:15.864Z |
10
10
  | `template/商业化规划模板.md` | 2025-11-12T10:41:15.864Z |
@@ -1,10 +1,26 @@
1
1
  ---
2
2
  name: aipk_initiative-planning
3
- description: Comprehensive workflow for evaluating, scoping, and approving new product initiatives.
3
+ description: Structure initiative evaluation and scoping to align strategy, feasibility, and risk before formal requirements; use for new product or major feature planning and steer clear of design sync, doc tweaks, or execution-phase work.
4
4
  ---
5
5
 
6
6
  # 立项规划
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:以结构化的立项规划流程连接需求收集与正式需求文档,帮助团队在投入资源前评估战略对齐、可行性与风险,并为决策提供清晰依据。
11
+
12
+ **适用场景**:
13
+ - 需要将初步研究或创意推进到正式需求文档的项目初期立项
14
+ - 重大功能模块或新业务线的可行性评估与资源规划
15
+ - 需要整合市场、产品、技术、商业等维度的立项建议供领导决策
16
+ - 需要准备项目投资分析、商业模式验证或技术选型输出
17
+
18
+ **不适用场景**:
19
+ - 已经处在需求撰写/开发阶段,只需补充细节的执行任务
20
+ - 仅需对现有设计稿进行同步修改的文档更新(请使用 design 相关 skill)
21
+ - 小规模日常变更说明或低影响 bug 修复
22
+ - 与开发、测试或上线执行具体落地(如代码、脚本)有关的任务
23
+
8
24
  > 🎯 **产品立项规划完整指南** - 从需求收集到需求文档撰写的关键桥梁,确保产品方向正确、资源合理分配
9
25
 
10
26
  ## 📋 文档信息
@@ -1,10 +1,10 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
- | `SKILL.md` | 2025-11-17T09:14:02.152Z |
7
+ | `SKILL.md` | 2025-11-17T13:25:08.595Z |
8
8
  | `template/index.md` | 2025-11-12T10:41:15.858Z |
9
9
  | `template/需求变动说明文档模板.md` | 2025-11-12T10:41:15.859Z |
10
10
  | `template/需求变动说明生成Prompt.md` | 2025-11-12T10:41:15.859Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: aipk_requirements-changes
3
- description: Templates, prompts, and procedures for documenting and reviewing requirement changes.
3
+ description: Templates, prompts, and procedures for documenting requirement changes, including structured overviews and diff analysis; use for any change to requirement docs and avoid new requirement drafting or unrelated engineering work.
4
4
  ---
5
5
 
6
6
  # 需求变动说明生成工具包
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:统一记录需求文档变更的模板、Prompt 与流程,确保每次变动都有完整的变动说明、差异核查与复盘材料。
11
+
12
+ **适用场景**:
13
+ - 需要为任何需求文档变更(重大迭代、小改动、合规更新)生成结构化的变动说明。
14
+ - 需要按照统一模板输出变动概述、Commit 历史与产品/功能/策略分析内容。
15
+ - 希望用 Prompt 或自动化脚本辅助整理变动内容、生成说明或检查清单。
16
+
17
+ **不适用场景**:
18
+ - 编写新的需求文档或设计内容(而不是描述变更本身)的任务。
19
+ - 单纯做开发、测试、发布相关工作,而非记录需求差异。
20
+ - 只需提交简单变更说明而无需模板规范(不过建议仍使用模板保持一致)。
21
+
8
22
  ## 执行指南
9
23
 
10
24
  **重要提示**: 本指南专为自动化文档生成设计,请严格按照以下规则执行:
@@ -1,10 +1,10 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
- | `SKILL.md` | 2025-11-17T09:39:31.163Z |
7
+ | `SKILL.md` | 2025-11-17T13:24:35.423Z |
8
8
  | `template/1_产品定位与分析.md` | 2025-11-17T06:49:33.762Z |
9
9
  | `template/2_功能需求.md` | 2025-11-17T06:49:38.006Z |
10
10
  | `template/3_商业化策略.md` | 2025-11-17T06:43:53.421Z |
@@ -1,10 +1,26 @@
1
1
  ---
2
2
  name: aipk_requirements-documentation
3
- description: Create new requirement documents or iterate on existing ones from scratch. Use this ONLY when the task involves drafting brand-new requirement documents or conducting requirement reviews WITHOUT starting from design assets. If the task involves updating requirements from design mockups or modifying docs based on visual designs, use the `skills/update-requirements-from-design` skill instead.
3
+ description: Guide for drafting new requirement docs or iterating existing ones textually; apply when starting from scratch or doing template-compliant text updates without design assets, and avoid design-driven updates or implementation/test tasks.
4
4
  ---
5
5
 
6
6
  # 需求文档与迭代模板指南
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:负责从零创建需求文档或对现有文档进行纯文本迭代,同时引导 AI 与人类协作者在不依赖视觉设计资产的前提下保持结构和格式一致。
11
+
12
+ **适用场景**:
13
+ - 全新产品或功能的需求文档撰写(从 0 到 1)
14
+ - 基于现有需求文档进行内容优化、补充说明或结构调整
15
+ - 纯文本的需求评审、需求变更记录更新(不涉及设计稿)
16
+ - 需要严格套用项目模板输出高一致性文档
17
+
18
+ **不适用场景**:
19
+ - 任务明确提到“设计图”、“视觉稿”、“mockup”或需要同步设计变化的情况(请转到 `skills/update-requirements-from-design`)
20
+ - 仅需处理演示、说明或示意性内容而非正式需求文档
21
+ - 与代码实现、测试用例、发布流程相关的工程任务
22
+ - 需要图像处理、设计稿拆分与命名的工作
23
+
8
24
  **重要区分**:本 Skill 用于**从零开始创建**需求文档或对现有文档进行**纯文本层面的迭代**。如果任务涉及"基于设计图更新需求"、"根据视觉稿修改需求文档"或任何从设计资产开始的流程,请使用 **`skills/update-requirements-from-design`** skill 而不是本 skill。
9
25
 
10
26
  ## 执行指南
@@ -1,13 +1,13 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
7
  | `examples/K12数学学习应用案例.md` | 2025-11-12T10:41:15.866Z |
8
8
  | `examples/电商平台优化案例.md` | 2025-11-12T10:41:15.866Z |
9
9
  | `references/Gemini_DeepResearch_工具链整合架构设计.md` | 2025-11-12T10:41:15.867Z |
10
- | `SKILL.md` | 2025-11-17T09:14:10.148Z |
10
+ | `SKILL.md` | 2025-11-17T13:25:04.821Z |
11
11
  | `template/产品需求发现与验证模板.md` | 2025-11-12T10:41:15.867Z |
12
12
  | `template/市场机会评估与竞争分析模板.md` | 2025-11-12T10:41:15.867Z |
13
13
  | `template/技术方案评估与可行性分析模板.md` | 2025-11-12T10:41:15.867Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: aipk_requirements-intake
3
- description: Intelligent intake pipeline for gathering and consolidating product requirements from multiple sources.
3
+ description: Structured intake pipeline combining Gemini DeepResearch with multi-platform data to discover product needs; use during early-stage opportunity validation and avoid it once requirements are defined or when design/dev tasks begin.
4
4
  ---
5
5
 
6
6
  # 需求收集
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:通过 Gemini DeepResearch 与多平台数据源的组合,提供结构化的需求发现流程,帮助团队快速整合问题、用户声音与市场洞察,输出高质量的需求方向和分析报告。
11
+
12
+ **适用场景**:
13
+ - 新功能或新产品立项前需要系统化需求收集和市场洞察。
14
+ - 需要多平台、跨区域产品数据(如 SensorTower/七麦/点点)来验证机会或痛点。
15
+ - 希望用 AI 整理多源数据并输出结构化分析、需求地图或技术评估。
16
+
17
+ **不适用场景**:
18
+ - 任务目标已明确、只需撰写具体的需求文档或交付物。
19
+ - 没有外部数据或市场输入,仅需根据内部需求创建文档。
20
+ - 需要进行设计稿同步、开发实施或测试验证的工作(其他 skill 负责)。
21
+
8
22
  > 🚀 **智能需求收集工具链** - 整合Gemini DeepResearch与多平台数据,实现高效、准确的产品需求收集
9
23
 
10
24
  ## 📋 文档信息
@@ -1,10 +1,10 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
7
7
  | `agent_skills_spec.md` | 2025-11-12T10:41:15.869Z |
8
8
  | `scripts/init_skill.js` | 2025-11-17T09:35:05.968Z |
9
9
  | `scripts/package_skill.js` | 2025-11-17T09:35:19.171Z |
10
- | `SKILL.md` | 2025-11-17T08:26:11.887Z |
10
+ | `SKILL.md` | 2025-11-17T13:24:38.406Z |
@@ -1,11 +1,25 @@
1
1
  ---
2
2
  name: skill-creation
3
- description: Standards and practices for creating new Agent Skills that extend Claude with reusable workflows, documentation, and tooling assets.
3
+ description: Playbook for creating or refreshing Skills so metadata, templates, and scripts meet Claude’s expectations; use when scaffolding Skills or syncing bundles, not for unrelated product content.
4
4
  license: Complete terms in LICENSE.txt
5
5
  ---
6
6
 
7
7
  # Skill Creation Playbook
8
8
 
9
+ ## Skill Scope
10
+
11
+ **Purpose**: Serve as the authoritative playbook for packaging new Skills, refreshing existing ones, and ensuring every addition follows the repo's meta-guidelines so Claude can discover and load them reliably.
12
+
13
+ **Applicable scenarios**:
14
+ - You need to scaffold or update a Skill directory (SKILL.md, templates, scripts).
15
+ - You are documenting how Claude should trigger, execute, or maintain a Skill.
16
+ - You are preparing materials (AGENTS sync, bundle packaging) that must match the Skill creation conventions.
17
+
18
+ **Not applicable when**:
19
+ - You write general product requirements, release notes, or customer-facing docs unrelated to Skill packaging.
20
+ - You are editing content inside a Skill for its domain-specific guidance without touching the meta-structure (use the respective Skill instead).
21
+ - You are implementing code or tooling outside the Skills bundle (use tools/ or other directories).
22
+
9
23
  This skill captures the expectations, templates, and workflows used across AI Product Kit to author reusable Skills. Treat it as the canonical reference when you need to convert a document into a Skill, add a new workflow, or refresh existing guidance.
10
24
 
11
25
  ## 1. Why Skills Matter
@@ -1,6 +1,6 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
@@ -8,6 +8,6 @@ Last refreshed: 2025-11-17T11:14:53.954Z
8
8
  | `images/20250710200701.png` | 2025-11-12T10:41:15.870Z |
9
9
  | `images/20250710200802.png` | 2025-11-12T10:41:15.870Z |
10
10
  | `Prompt生成.md` | 2025-11-12T10:41:15.869Z |
11
- | `SKILL.md` | 2025-11-17T09:52:16.315Z |
11
+ | `SKILL.md` | 2025-11-17T13:24:48.472Z |
12
12
  | `标记文档更新.md` | 2025-11-12T10:41:15.870Z |
13
13
  | `生成DrawIO文档.md` | 2025-11-12T10:41:15.871Z |
@@ -1,10 +1,24 @@
1
1
  ---
2
2
  name: tool_prompts
3
- description: Directory of curated tool prompts, their core strengths, calling scenarios, input/output expectations, and the Markdown files that describe how to run them.
3
+ description: Catalog of curated tool prompts with strengths, scenarios, and I/O rules for reuse; refer to it when consuming or extending prompts, not when writing unrelated product docs or new Skills.
4
4
  ---
5
5
 
6
6
  # 工具 Prompt 目录
7
7
 
8
+ ## 技能范围
9
+
10
+ **作用**:一站式列出所有可复用的工具 Prompt、调用场景与输入输出规范,方便团队快速定位并复用已有 Prompt。
11
+
12
+ **适用场景**:
13
+ - 需要使用、扩展或记录标准 Prompt(例如文档同步、DrawIO 输出、AI 体验设计)。
14
+ - 在文档或自动化流程中引用 Prompt,想快速找到对应的 Markdown 指南。
15
+ - 审查 Prompt 目录是否齐全或准备新增 Prompt 资源链接。
16
+
17
+ **不适用场景**:
18
+ - 需要编写与 Prompt 管理无关的产品/设计文档内容。
19
+ - 需要创建新的 Skill(应转到 `skills/aipk_skill_generate`)。
20
+ - Prompt 直接交付用户而不作为文档或标准化资产引用的情况。
21
+
8
22
  ## 1. 技能定位
9
23
  - **适用场景**:需要复用或扩展现有 Prompt、为团队成员指路、或在文档/自动化流程中引用标准 Prompt 时
10
24
  - **目标人群**:文档维护者、产品/设计同学、自动化脚本作者
@@ -1,6 +1,6 @@
1
1
  # GURU AI Snapshot
2
2
 
3
- Last refreshed: 2025-11-17T11:14:53.954Z
3
+ Last refreshed: 2025-11-17T13:32:10.622Z
4
4
 
5
5
  | File | Last Modified (UTC) |
6
6
  | --- | --- |
@@ -118,4 +118,4 @@ Last refreshed: 2025-11-17T11:14:53.954Z
118
118
  | `scripts/sharp-runtime/package.json` | 2025-11-13T12:53:10.715Z |
119
119
  | `scripts/split-design-boards.js` | 2025-11-13T13:11:29.610Z |
120
120
  | `scripts/sync-design-to-requirements.js` | 2025-11-13T13:11:32.947Z |
121
- | `SKILL.md` | 2025-11-17T09:14:24.660Z |
121
+ | `SKILL.md` | 2025-11-17T13:24:54.452Z |
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: aipk_update-requirements-from-design
3
- description: Update requirement documents based on design mockups (composite boards or individual UI frames). Use this when you need to split composite boards or directly align single/multiple standalone UI images with requirement docs, including syncing visuals, verifying differences, and generating change records.
3
+ description: Sync requirement docs with design mockups (composite or standalone UI frames) via split/mapping scripts, capturing visual alignment and change records; use this when design assets drive the update and avoid pure text-only work.
4
4
  ---
5
5
 
6
6
  # Update Requirements from Design Skill
@@ -9,6 +9,20 @@ description: Update requirement documents based on design mockups (composite boa
9
9
 
10
10
  处理流程:如果是合成图,先通过 [`./scripts/split-design-boards.js`](./scripts/split-design-boards.js) 拆分每个面板,再用 [`./scripts/sync-design-to-requirements.js`](./scripts/sync-design-to-requirements.js) 管理映射与入库;如果是单张或多张独立 UI 图,则在确认落库命名后直接调整需求文档,重点对齐图片与文案一致性,并在变动说明中汇总差异。
11
11
 
12
+ ## 技能范围
13
+
14
+ **作用**:提供从设计稿到需求文档的连贯流程(含拆分、映射、入库、图文对齐与变更记录),确保视觉与文本同步并留下清晰的差异说明。
15
+
16
+ **适用场景**:
17
+ - 需要拆分合成设计图并批量处理或命名面板时。
18
+ - 必须将单张/多张 UI 图精确对齐到指定需求章节并更新文案或控件说明。
19
+ - 期望同时生成设计差异核对表、变动说明与版本记录,便于审计。
20
+
21
+ **不适用场景**:
22
+ - 纯文本需求更新或撰写工作(此类任务请使用其他需求技能)。
23
+ - 没有视觉材料、仅依靠描述输出文档的需求说明。
24
+ - 仅在设计工具内制作界面稿而不触及需求文档的流程。
25
+
12
26
  > **注意**:脚本直接运行在 Node 环境,依赖集中安装在 [`./scripts/sharp-runtime/`](./scripts/sharp-runtime/) 中。首次使用或更新版本时,在该目录执行 `npm install`,即可获取 `sharp` 等运行时依赖,无需额外打包。
13
27
 
14
28
  <!-- rule: Agents must complete the entire pipeline end-to-end without依赖人工手动操作或 GUI 工具。 -->