소스 정보
- 저장소
- ptreezh/sscisubagent-skills
- 최근 소스 활동
- 2025년 12월 28일 15:46
- 감지된 SKILL.md 언어
- 다국어 혼합
- 스타
- 28
- 포크
- 7
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ptreezh/sscisubagent-skills --skill performing-centrality-analysis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | performing-centrality-analysis |
| description | 当用户需要执行社会网络中心性分析,包括度中心性、接近中心性、介数中心性和特征向量中心性的计算和解释时使用此技能 |
| version | 1.0.0 |
| author | socienceAI.com |
| tags | ["social-network-analysis","centrality-measures","network-analysis","graph-theory","node-importance"] |
识别网络中的关键节点,为中文社会科学研究提供网络结构和权力关系的量化分析。
Use this skill when the user requests:
When a user requests centrality analysis:
当用户提到以下需求时,使用此技能:
# 1. 计算所有中心性指标
python scripts/calculate_centrality.py \
--input network.json \
--output centrality.json
# 2. 按特定指标排序
python scripts/calculate_centrality.py \
--input network.json \
--metric betweenness \
--top 20
# 3. 识别关键节点
python scripts/identify_key_nodes.py \
--input centrality.json \
--output key_nodes.json
# 4. 比较不同中心性
python scripts/compare_centralities.py \
--input centrality.json \
--output comparison.json
# 5. 网络可视化
python scripts/visualize_centrality.py \
--input network.json \
--centrality centrality.json \
--output network_viz.png
使用预处理工具清洗网络数据:
python scripts/preprocess_network_data.py --input raw_data.json --output clean_network.json
关键要点:
详见:references/data-preparation.md
使用计算工具获得四种中心性指标:
python scripts/calculate_centrality.py --input clean_network.json --output centrality_measures.json
计算指标:
详见:references/centrality-theory.md
使用分类工具识别不同类型的节点:
python scripts/identify_key_nodes.py --input centrality_measures.json --output node_classifications.json
节点类型:
详见:references/node-classification.md
使用比较工具分析不同中心性指标的关系:
python scripts/compare_centralities.py --input centrality_measures.json --output comparison_report.json
比较维度:
详见:references/centrality-comparison.md
结合社会背景解释中心性结果:
详见:references/social-interpretation.md
统一的三层JSON格式:
{
"summary": {
"total_nodes": 50,
"total_edges": 120,
"network_density": 0.098,
"top_node": "节点A",
"hubs_count": 5,
"bridges_count": 3,
"influencers_count": 4
},
"details": {
"centralities": {
"degree": [...],
"closeness": [...],
"betweenness": [...],
"eigenvector": [...]
},
"top_nodes": [...],
"key_nodes": {
"hubs": [...],
"bridges": [...],
"influencers": [...]
}
},
"metadata": {
"timestamp": "2025-12-21T10:30:00",
"version": "1.0.0"
}
}
详见:references/output-format.md
在完成中心性分析后,请检查以下项目:
详见:references/quality-checklist.md
references/centrality-theory.md - 公式和算法references/chinese-network-characteristics.md - 关系网络特点references/case-studies.md - 完整分析案例references/troubleshooting.md - 问题诊断完成高质量的中心性分析应该:
此技能为中文社会科学研究提供全面的网络中心性分析支持,帮助研究者深入理解网络结构和权力关系。