https://github.com/liuhao1024/open-skills
Open-source Claude Code & Codex skills collection — multi-agent stock analysis, financial analysis, and more
https://github.com/liuhao1024/open-skills
a-share claude-code codex finance multi-agent plugins skills stock-analysis trading workflow
Last synced: 9 days ago
JSON representation
Open-source Claude Code & Codex skills collection — multi-agent stock analysis, financial analysis, and more
- Host: GitHub
- URL: https://github.com/liuhao1024/open-skills
- Owner: liuhao1024
- License: mit
- Created: 2026-06-11T17:27:06.000Z (13 days ago)
- Default Branch: main
- Last Pushed: 2026-06-11T17:39:58.000Z (13 days ago)
- Last Synced: 2026-06-11T19:20:10.536Z (13 days ago)
- Topics: a-share, claude-code, codex, finance, multi-agent, plugins, skills, stock-analysis, trading, workflow
- Language: CSS
- Homepage: https://github.com/liuhao1024/open-skills
- Size: 69.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Open Skills 🔧
[](LICENSE)
[](https://www.python.org/downloads/)
[](https://github.com/liuhao1024/open-skills/actions/workflows/ci.yml)
[](https://github.com/liuhao1024/open-skills/stargazers)
> 开源的 Claude Code & Codex 技能/插件集合
一个统一的技能仓库,同时兼容 **Claude Code** 和 **Codex** 两大 AI 编程平台。每个插件自包含,可独立使用,也可通过 workflow 串联成完整的分析 pipeline。
## 📦 已收录插件
| 插件 | 描述 | 平台 | 状态 |
|------|------|------|------|
| [trading-agents](plugins/trading-agents/) | 多智能体股票分析 pipeline(4分析师→辩论→风险→PM) | Claude Code + Codex | ✅ 稳定 |
> 💡 **想要更多插件?** 提交 [Feature Request](https://github.com/liuhao1024/open-skills/issues/new?template=feature_request.md) 或自己 [开发一个](docs/plugin-development.md)!
## 🚀 快速开始
```bash
# 克隆仓库
git clone https://github.com/liuhao1024/open-skills.git
cd open-skills
# 一键安装到 Claude Code
bash install.sh --target claude-code
# 或安装到 Codex
bash install.sh --target codex
# 或两者都装
bash install.sh --target both
```
安装后在 Claude Code 中:
```
/trading-agents 300255.SZ
```
或带持仓分析:
```javascript
Workflow({
scriptPath: "workflows/trading-agents.js",
args: { ticker: "300255.SZ", holdCost: 34.7, holdQuantity: 10000, holdingDate: "2026-06-11" }
})
```
详见 [快速开始指南](docs/getting-started.md)。
## 🏗️ 目录结构
```
open-skills/
├── plugins/ # 插件目录
│ ├── trading-agents/ # 多智能体股票分析
│ │ ├── plugin.json # 插件元数据
│ │ ├── SKILL.md # Codex skill 定义
│ │ ├── scripts/ # Python 脚本
│ │ ├── workflows/ # Claude Code workflow
│ │ ├── frameworks/ # 分析框架
│ │ └── templates/ # 输出模板
│ └── _template/ # 新建插件的模板
├── shared/ # 共享工具库
├── docs/ # 文档
│ ├── getting-started.md # 快速开始
│ └── plugin-development.md # 插件开发指南
├── .github/ # GitHub 配置
│ ├── workflows/ci.yml # CI 测试
│ └── ISSUE_TEMPLATE/ # Issue 模板
├── install.sh # 一键安装脚本
├── CONTRIBUTING.md # 贡献指南
└── LICENSE # MIT License
```
## 🔌 插件规范
每个插件是一个独立目录,包含:
| 文件 | 必需 | 说明 |
|------|------|------|
| `plugin.json` | ✅ | 插件元数据(名称、版本、依赖) |
| `SKILL.md` | ✅ | Codex skill 定义(frontmatter + 使用说明) |
| `README.md` | ✅ | 插件文档(安装、使用、配置) |
| `scripts/` | ❌ | Python 脚本(可独立运行) |
| `workflows/` | ❌ | Claude Code workflow(JS) |
| `frameworks/` | ❌ | 分析框架文档 |
| `templates/` | ❌ | 输出模板(CSS/HTML) |
| `config/` | ❌ | 配置示例 |
详见 [插件开发指南](docs/plugin-development.md)。
## 🤝 贡献
欢迎贡献新插件或改进现有插件!
1. Fork 本仓库
2. 复制 `plugins/_template/` 作为起点
3. 开发并测试你的插件
4. 提交 Pull Request
详见 [贡献指南](CONTRIBUTING.md)。
## 📄 License
[MIT License](LICENSE) — 自由使用、修改和分发。
---
Made with ❤️ for the AI coding community