소스 정보
- 저장소
- liangdabiao/exa-research-mcp-skill
- 최근 소스 활동
- 2026년 6월 23일 08:09
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 104
- 포크
- 17
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/liangdabiao/exa-research-mcp-skill --skill effective-harnesses명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Workflow skill for evidence-based renewable energy market research, V4 full country wind-market status reports, source-to-final continuity, project pipeline verification, deduplication, product-fit analysis, factual procurement-window mapping, and executive briefing compression. Use for overseas wind, solar, storage, hydrogen, grid, or clean-energy market research where evidence quality, source traceability, omission control, uncertainty control, and decision usefulness matter more than long reports.
Company research using Exa search. Finds company info, competitors, news, tweets, financials, LinkedIn profiles, builds company lists.
深度外贸市场调研技能。对目标国家+产品领域进行全面竞争对手分析,覆盖品牌商、制造商、经销商,生成含市场格局、定价策略、渠道分析和进入建议的完整调研报告。
| name | effective-harnesses |
| description | 长时间运行 Agent 框架 - 项目初始化、feature 管理、进度追踪 |
| allowed-tools | ["Read","Glob","Grep","Edit","Write","Bash","Task","AskUserQuestion"] |
本 skill 提供完整的长时间运行 Agent 框架实现,支持项目初始化、feature 管理、会话恢复和进度追踪。
| 命令 | 功能 |
|---|---|
/harness-init | 初始化新项目 |
/harness-add | 添加新 feature |
/harness-status | 查看项目进度 |
/harness-complete | 标记 feature 完成 |
每次新会话开始时自动执行:
{
"version": "1.1",
"project": "项目名称",
"test_command": "npm test",
"created": "2026-02-14",
"features": [
{
"id": "feat-001",
"category": "functional",
"priority": 1,
"description": "功能描述",
"steps": ["步骤1", "步骤2", "步骤3"],
"test_command": "npm test",
"test_status": "passed",
"test_output": "测试输出摘要",
"status": "completed",
"passes": true
}
]
}
functional: 新功能开发bugfix: Bug 修复refactor: 代码重构每个 feature 完成后必须运行单元测试:
npm test、pytest 等){
"id": "feat-001",
"test_command": "npm test",
"test_status": "passed", // pending, running, passed, failed
"test_output": "测试输出摘要"
}