소스 정보
- 저장소
- ptreezh/sscisubagent-skills
- 최근 소스 활동
- 2025년 12월 21일 14:34
- 감지된 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-open-coding명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | performing-open-coding |
| description | 当用户需要执行扎根理论的开放编码,包括中文质性数据的概念识别、初始编码、持续比较和备忘录撰写时使用此技能。 |
专门用于扎根理论研究的开放编码阶段,对中文质性数据进行系统性的概念识别和初始编码工作。
当用户提到以下需求时,使用此技能:
# 1. 文本预处理
python scripts/preprocess_text.py --input interview.txt --output clean.json
# 2. 快速概念提取
python scripts/auto_loader.py --input interview.txt --output concepts.json
# 3. 持续比较
python scripts/compare_codes.py --input concepts.json --output comparison.json
# 4. 概念聚类(可选)
python scripts/cluster_concepts.py --input concepts.json --output clusters.json
# 5. 编码验证
python scripts/validate_codes.py --input concepts.json --output validation.json
使用预处理工具清洗文本:
python scripts/preprocess_text.py --input raw.txt --output clean.json
关键要点:
详见:references/theory.md - 预处理原理
使用自动提取工具获得初步概念:
python scripts/auto_loader.py --input raw.txt --output concepts_v1.json
编码原则:
详见:references/examples.md - 完整编码案例
人工精炼:
使用比较工具识别重复和关系:
python scripts/compare_codes.py --input concepts.json --output comparison.json
比较维度:
详见:references/theory.md - 持续比较方法
使用聚类发现模式(可选):
python scripts/cluster_concepts.py --input concepts.json --output clusters.json
使用验证工具检查质量:
python scripts/validate_codes.py --input concepts.json --output validation.json
质量标准:
详见:references/troubleshooting.md - 常见问题解决
记录编码过程的关键思考:
详见:writing-grounded-theory-memos 技能
所有工具使用统一的三层JSON格式:
{
"summary": {
"total_concepts": 20,
"top_concepts": ["学习", "帮助", "关系"],
"processing_time": 2.5
},
"details": {
"concepts": [...],
"statistics": {...}
},
"metadata": {
"timestamp": "2025-12-18T10:30:00",
"version": "1.0.0"
}
}
详见:references/examples.md - 完整输出示例
在完成开放编码后,请检查以下项目:
快速诊断:
references/troubleshooting.md - 问题1、2references/troubleshooting.md - 问题3compare_codes.py 自动识别validate_codes.py 检查中文特殊性:
references/chinese-context.mdreferences/theory.md - 扎根理论流派、核心原则references/examples.md - 完整编码过程references/troubleshooting.md - 问题诊断和解决references/chinese-context.md - 文化和语言特点完成开放编码后,应该产出:
此技能专为中文质性研究设计,提供从数据预处理到概念提取的完整开放编码支持。