cli-calctool 1.0.2 → 1.0.3
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.
- package/README.md +6 -8
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
# calctool
|
|
1
|
+
# cli-calctool
|
|
2
2
|
|
|
3
3
|
从 CLI.Tax 安装并运行 calctool 技能:输入领域需求(如"我是财务,想要一个经营健康诊断工具"),
|
|
4
4
|
生成可执行、可验证、可发布的在线计算工具——支持自定义指标、自定义公式逻辑、上传内容自动识别。
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
```bash
|
|
7
|
+
npx cli-calctool@latest install
|
|
8
|
+
```
|
|
7
9
|
|
|
8
|
-
|
|
9
|
-
- `npx <package-url> run` — 技能握手:capabilities + intake 提问,保存 CALCTOOL-REQUIREMENTS.json
|
|
10
|
+
Source: https://github.com/88208555/calctool-clitax.git
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
`calctool.skill.request/1.0` 协议,端点 `https://cli.tax/KKyA6xljUX`,
|
|
14
|
-
操作:capabilities / help / intake / validate / compile-inline(确定性引擎定义生成)。
|
|
12
|
+
`calctool.skill.request/1.0` 协议,端点 `https://cli.tax/KKyA6xljUX`。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cli-calctool",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Calctool skill installer for CLI.Tax: generate a runnable online calculator from a domain need.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=18"
|
|
17
17
|
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/88208555/calctool-clitax.git"
|
|
21
|
+
},
|
|
18
22
|
"license": "UNLICENSED",
|
|
19
23
|
"keywords": [
|
|
20
24
|
"cli.tax",
|