ssci-subagent-skills 1.0.0 → 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.
package/CHANGELOG.md CHANGED
@@ -191,5 +191,5 @@ and versioning adheres to [Semantic Versioning](https://semver.org/).
191
191
 
192
192
  ## 链接 / Links
193
193
 
194
- - [当前版本](https://github.com/yourusername/sscisubagent-skills/releases/tag/v1.0.0)
195
- - [所有版本](https://github.com/yourusername/sscisubagent-skills/releases)
194
+ - [当前版本](https://github.com/ptreezh/sscisubagent-skills/releases/tag/v1.0.0)
195
+ - [所有版本](https://github.com/ptreezh/sscisubagent-skills/releases)
package/README.md CHANGED
@@ -57,7 +57,7 @@ SSCI Subagent Skills is a professional multi-agent skill system designed for Chi
57
57
 
58
58
  ```bash
59
59
  # 克隆仓库 / Clone repository
60
- git clone https://github.com/yourusername/sscisubagent-skills.git
60
+ git clone https://github.com/ptreezh/sscisubagent-skills.git
61
61
  cd sscisubagent-skills
62
62
 
63
63
  # 安装依赖 / Install dependencies
@@ -514,7 +514,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
514
514
 
515
515
  - 项目主页: [https://github.com/yourusername/sscisubagent-skills](https://github.com/yourusername/sscisubagent-skills)
516
516
  - 问题反馈: [GitHub Issues](https://github.com/yourusername/sscisubagent-skills/issues)
517
- - 邮件: your.email@example.com
517
+ - 邮件: zhang.shuren@foxmail.com
518
518
 
519
519
  ---
520
520
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "ssci-subagent-skills",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "description": "SSCI中文社会科学研究技能包 - 提供扎根理论、社会网络分析、场域分析等专业研究技能",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "postinstall": "node scripts/postinstall.js",
7
+ "postinstall": "node scripts/postinstall.js || echo 'Postinstall completed with warnings'",
8
8
  "deploy": "stigmergy skill sync",
9
9
  "validate": "node scripts/validate-skills.js",
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -78,4 +78,4 @@
78
78
  "engines": {
79
79
  "node": ">=14.0.0"
80
80
  }
81
- }
81
+ }
@@ -34,7 +34,12 @@ function validateSkillFile(skillPath) {
34
34
  return false;
35
35
  }
36
36
 
37
- const content = fs.readFileSync(skillFile, 'utf8');
37
+ let content = fs.readFileSync(skillFile, 'utf8');
38
+
39
+ // 去除BOM字符(如果存在)
40
+ if (content.charCodeAt(0) === 0xFEFF) {
41
+ content = content.slice(1);
42
+ }
38
43
 
39
44
  // 检查YAML frontmatter
40
45
  if (!content.startsWith('---')) {
@@ -70,7 +75,12 @@ function validateAgentFile(agentPath) {
70
75
  return false;
71
76
  }
72
77
 
73
- const content = fs.readFileSync(agentPath, 'utf8');
78
+ let content = fs.readFileSync(agentPath, 'utf8');
79
+
80
+ // 去除BOM字符(如果存在)
81
+ if (content.charCodeAt(0) === 0xFEFF) {
82
+ content = content.slice(1);
83
+ }
74
84
 
75
85
  // 检查YAML frontmatter
76
86
  if (!content.startsWith('---')) {
@@ -1,3 +1,19 @@
1
+ ---
2
+ name: ant-subagent
3
+ description: 行动者网络理论子智能体,提供网络分析、参与者识别和转译过程分析的统一接口
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [ant, actor-network-theory, subagent, network-analysis, participant-identification]
8
+ compatibility: Claude 3.5 Sonnet and above, iFlow CLI
9
+ metadata:
10
+ domain: sociology
11
+ methodology: actor-network-theory
12
+ complexity: advanced
13
+ last_updated: "2025-12-20"
14
+ allowed-tools: [python, bash, read_file, write_file]
15
+ ---
16
+
1
17
  # ANT Subagent (Actor-Network Theory Subagent)
2
18
 
3
19
  ## Skill Overview
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: business-ecosystem-analysis
3
+ description: 商业生态系统分析技能,整合多个子技能进行全面的商业生态系统分析
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [business, ecosystem, analysis, strategy, network]
8
+ compatibility: Node.js environment
9
+ metadata:
10
+ domain: business-analysis
11
+ methodology: ecosystem-theory
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [node, bash, read_file, write_file]
16
+ ---
17
+
18
+ # 商业生态系统分析技能
19
+
20
+ ## 概述
21
+ 商业生态系统分析技能整合了多个子技能,提供全面的商业生态系统分析能力。
22
+
23
+ ## 子技能
24
+ - 生态系统数据收集
25
+ - 生态系统关系分析
26
+ - 关键物种分析
27
+ - 数字化转型影响分析
28
+
29
+ ## 使用时机
30
+ 当用户请求进行商业生态系统分析时使用此技能。
@@ -1,6 +1,18 @@
1
1
  ---
2
2
  name: business-ecosystem-data-collection
3
- description: 从真实外部数据源收集商业生态系统分析所需数据,包括企业信息、关系数据、行业信息等,为后续生态系统分析提供高质量数据支持。
3
+ description: 从真实外部数据源收集商业生态系统分析所需数据,包括企业信息、关系数据、行业信息等,为后续生态系统分析提供高质量数据支持
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [business, ecosystem, data-collection, real-data, external-sources]
8
+ compatibility: Node.js environment
9
+ metadata:
10
+ domain: business-analysis
11
+ methodology: data-collection
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [node, bash, read_file, write_file]
4
16
  ---
5
17
 
6
18
  # 商业生态系统数据收集技能
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: digital-transformation
3
+ description: 数字化转型分析技能,整合多个子技能进行全面的数字化转型分析
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [digital, transformation, business, innovation, strategy]
8
+ compatibility: Node.js environment
9
+ metadata:
10
+ domain: business-analysis
11
+ methodology: digital-transformation
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [node, bash, read_file, write_file]
16
+ ---
17
+
18
+ # 数字化转型分析技能
19
+
20
+ ## 概述
21
+ 数字化转型分析技能整合了多个子技能,提供全面的数字化转型分析能力。
22
+
23
+ ## 子技能
24
+ - 商业创新路径规划
25
+ - 商业模式重构
26
+ - 业务场景解构分析
27
+ - 数字化转型解构分析
28
+ - 智能化转型解构分析
29
+ - 在线转型解构分析
30
+ - 创新生态位识别
31
+
32
+ ## 使用时机
33
+ 当用户请求进行数字化转型分析时使用此技能。
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: ecosystem-analysis
3
+ description: 生态系统分析技能,整合多个子技能进行全面的生态系统分析
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [ecosystem, analysis, business, network, strategy]
8
+ compatibility: Node.js environment
9
+ metadata:
10
+ domain: business-analysis
11
+ methodology: ecosystem-theory
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [node, bash, read_file, write_file]
16
+ ---
17
+
18
+ # 生态系统分析技能
19
+
20
+ ## 概述
21
+ 生态系统分析技能整合了多个子技能,提供全面的生态系统分析能力。
22
+
23
+ ## 子技能
24
+ - 关键物种商业模式分析
25
+ - 数字化转型对业务的影响分析
26
+ - 数字化转型对生态系统的影响评估
27
+ - 行业生态系统分析
28
+ - 生态系统关系分析
29
+
30
+ ## 使用时机
31
+ 当用户请求进行生态系统分析时使用此技能。
@@ -1,6 +1,18 @@
1
1
  ---
2
2
  name: ecosystem-relationship-analysis
3
3
  description: 专门分析商业生态系统中各主体间关系的技能,提供关系类型分析、网络拓扑分析、关键关系识别、生态系统健康度评估等功能,分析合作、竞争、供应、投资、监管等多种关系类型
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [ecosystem, relationship-analysis, network, stability, community-detection]
8
+ compatibility: Node.js environment
9
+ metadata:
10
+ domain: business-analysis
11
+ methodology: network-analysis
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [node, bash, read_file, write_file]
4
16
  ---
5
17
 
6
18
  # 生态系统关系分析技能
@@ -1,3 +1,19 @@
1
+ ---
2
+ name: grounded-theory-expert-enhanced
3
+ description: 增强版扎根理论专家分析技能,整合四位专家(现象学、实证主义、建构主义、本土化)的并行分析系统,提供完整的10阶段扎根理论分析流程
4
+ version: 3.4.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [grounded-theory, qualitative-research, coding, saturation, reliability, multi-expert]
8
+ compatibility: Claude 3.5 Sonnet and above, iFlow CLI
9
+ metadata:
10
+ domain: research-methodology
11
+ methodology: grounded-theory
12
+ complexity: advanced
13
+ last_updated: "2026-01-05"
14
+ allowed-tools: [python, bash, read_file, write_file]
15
+ ---
16
+
1
17
  # 增强版扎根理论专家分析技能 v3.1
2
18
 
3
19
  ## 主控文档(必读)
@@ -0,0 +1,31 @@
1
+ ---
2
+ name: sna-analysis
3
+ description: 社会网络分析技能,提供全面的社会网络分析能力
4
+ version: 1.0.0
5
+ author: socienceAI.com
6
+ license: MIT
7
+ tags: [sna, social-network, analysis, network, centrality]
8
+ compatibility: Python environment
9
+ metadata:
10
+ domain: social-science
11
+ methodology: social-network-analysis
12
+ complexity: intermediate
13
+ integration_type: analysis_tool
14
+ last_updated: "2025-12-26"
15
+ allowed-tools: [python, bash, read_file, write_file]
16
+ ---
17
+
18
+ # 社会网络分析技能
19
+
20
+ ## 概述
21
+ 社会网络分析技能提供全面的社会网络分析能力,包括中心性分析、社区检测、网络可视化等。
22
+
23
+ ## 核心功能
24
+ - 网络构建
25
+ - 中心性分析
26
+ - 社区检测
27
+ - 结构洞分析
28
+ - 网络可视化
29
+
30
+ ## 使用时机
31
+ 当用户请求进行社会网络分析时使用此技能。