用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/liangdabiao/exa-research-mcp-skill --skill effective-harnesses命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
深度外贸市场调研技能。对目标国家+产品领域进行全面竞争对手分析,覆盖品牌商、制造商、经销商,生成含市场格局、定价策略、渠道分析和进入建议的完整调研报告。
基于 SOC 职业分类
正在显示 SKILL.md
| 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": "测试输出摘要"
}