@kmlckj/licos-ai-cli 1.0.5 → 1.0.6
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/lib/__templates__/agent/pyproject.toml +1 -1
- package/lib/__templates__/agent/requirements.txt +1 -1
- package/lib/__templates__/workflow/AGENTS.md +31 -31
- package/lib/__templates__/workflow/pyproject.toml +1 -1
- package/lib/__templates__/workflow/requirements.txt +1 -1
- package/lib/cli.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
licos-agent-runtime>=0.2.
|
|
1
|
+
licos-agent-runtime>=0.2.20
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
# 项目上下文
|
|
2
|
-
|
|
3
|
-
## 技术栈
|
|
4
|
-
|
|
5
|
-
- **项目类型**: WORKFLOW
|
|
6
|
-
- **运行时**: Python + LangGraph + licos-agent-runtime
|
|
7
|
-
- **入口**: `src/graphs/graph.py`
|
|
8
|
-
|
|
9
|
-
## 目录结构
|
|
10
|
-
|
|
11
|
-
```text
|
|
12
|
-
├── config/
|
|
13
|
-
├── scripts/
|
|
14
|
-
├── src/
|
|
15
|
-
│ ├── main.py
|
|
16
|
-
│ └── graphs/
|
|
17
|
-
│ ├── graph.py
|
|
18
|
-
│ ├── state.py
|
|
19
|
-
│ └── nodes/
|
|
20
|
-
└── AGENTS.md
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## 项目说明
|
|
24
|
-
|
|
25
|
-
本文件用于记录用户项目可维护的长期上下文,例如业务目标、节点清单、外部 API 约定、输入输出样例、测试方式和后续注意事项。
|
|
26
|
-
|
|
27
|
-
维护规则:
|
|
28
|
-
|
|
29
|
-
- `AGENTS.md` 只是项目索引,输入输出样例必须跟随 `src/graphs/state.py` 和节点实现更新。
|
|
30
|
-
- 工作流存在真实业务节点时,不要把输入输出写成 `{}`,除非它确实没有外部输入也没有返回结果。
|
|
31
|
-
- 如果文档与源码 schema 冲突,应修正文档,不要为了匹配文档清空 `GraphInput` / `GraphOutput`。
|
|
1
|
+
# 项目上下文
|
|
2
|
+
|
|
3
|
+
## 技术栈
|
|
4
|
+
|
|
5
|
+
- **项目类型**: WORKFLOW
|
|
6
|
+
- **运行时**: Python + LangGraph + licos-agent-runtime
|
|
7
|
+
- **入口**: `src/graphs/graph.py`
|
|
8
|
+
|
|
9
|
+
## 目录结构
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
├── config/
|
|
13
|
+
├── scripts/
|
|
14
|
+
├── src/
|
|
15
|
+
│ ├── main.py
|
|
16
|
+
│ └── graphs/
|
|
17
|
+
│ ├── graph.py
|
|
18
|
+
│ ├── state.py
|
|
19
|
+
│ └── nodes/
|
|
20
|
+
└── AGENTS.md
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## 项目说明
|
|
24
|
+
|
|
25
|
+
本文件用于记录用户项目可维护的长期上下文,例如业务目标、节点清单、外部 API 约定、输入输出样例、测试方式和后续注意事项。
|
|
26
|
+
|
|
27
|
+
维护规则:
|
|
28
|
+
|
|
29
|
+
- `AGENTS.md` 只是项目索引,输入输出样例必须跟随 `src/graphs/state.py` 和节点实现更新。
|
|
30
|
+
- 工作流存在真实业务节点时,不要把输入输出写成 `{}`,除非它确实没有外部输入也没有返回结果。
|
|
31
|
+
- 如果文档与源码 schema 冲突,应修正文档,不要为了匹配文档清空 `GraphInput` / `GraphOutput`。
|
|
@@ -1 +1 @@
|
|
|
1
|
-
licos-agent-runtime>=0.2.
|
|
1
|
+
licos-agent-runtime>=0.2.20
|
package/lib/cli.js
CHANGED
|
@@ -2109,7 +2109,7 @@ const EventBuilder = {
|
|
|
2109
2109
|
};
|
|
2110
2110
|
|
|
2111
2111
|
var name = "@kmlckj/licos-ai-cli";
|
|
2112
|
-
var version = "1.0.
|
|
2112
|
+
var version = "1.0.6";
|
|
2113
2113
|
var description = "LICOS AI coding workspace CLI - project template engine and dev tools";
|
|
2114
2114
|
var license = "MIT";
|
|
2115
2115
|
var author = "kmlckj";
|