@zhanngning/hecode 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +32 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ Your AI Coding Assistant CLI with Financial Analysis.
6
6
 
7
7
  - **Multi-Model Support**: OpenAI, Anthropic, MiMo, Ollama, and any OpenAI-compatible API
8
8
  - **Tool System**: File read/write/edit, bash execution, glob/grep search
9
- - **Skill System**: Loadable domain skills (coding, data analysis, finance, etc.)
9
+ - **Skill System**: Loadable domain skills (coding, testing, ppt, planning, finance, etc.)
10
10
  - **Memory System**: Session, project, and global memory with search
11
11
  - **Interactive REPL**: Streaming output, slash commands, tool status display
12
12
  - **Financial Analysis**: Stock analysis, technical indicators, research reports
@@ -133,6 +133,37 @@ pip install akshare pandas
133
133
 
134
134
  ## Skill System
135
135
 
136
+ ### Built-in Skills
137
+
138
+ | Skill | Trigger Words | Description |
139
+ |-------|---------------|-------------|
140
+ | `coding` | code, fix, debug, refactor, implement | Write clean, minimal code |
141
+ | `testing` | test, unit test, TDD, BDD | Write and run tests |
142
+ | `ppt` | ppt, presentation, slides, 演示 | Create presentations |
143
+ | `planning` | plan, project, roadmap, 项目计划 | Create project plans |
144
+ | `finance` | finance, 股票, 金融, 研究报告 | Financial analysis |
145
+
146
+ ### Usage Examples
147
+
148
+ ```bash
149
+ # Coding
150
+ hecode --skill coding "implement a REST API"
151
+
152
+ # Testing
153
+ hecode --skill testing "write unit tests for UserService"
154
+
155
+ # PPT
156
+ hecode --skill ppt "create a presentation about our product"
157
+
158
+ # Planning
159
+ hecode --skill planning "create a project plan for Q3"
160
+
161
+ # Finance
162
+ hecode --skill finance "分析贵州茅台"
163
+ ```
164
+
165
+ ### Custom Skills
166
+
136
167
  Create custom skills in `skills/<name>/SKILL.md`:
137
168
 
138
169
  ```markdown
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zhanngning/hecode",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "hecode": "./dist/index.js"