@uocnv1998/agent-kit 1.0.0 → 1.0.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.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Agent Skills CLI (`@
|
|
1
|
+
# Agent Skills CLI (`@uocnv1998/agent-kit`)
|
|
2
2
|
|
|
3
3
|
A powerful command-line tool designed to scaffold and manage AI Agent environments. This tool specifically builds the foundation for AI agents (like Antigravity) by setting up structured **Skills**, **Rules**, and **Workflows** within your project.
|
|
4
4
|
|
|
@@ -11,14 +11,14 @@ The **Agent Skills CLI** streamlines the process of initializing a project for s
|
|
|
11
11
|
You can run this tool directly using `npx` without installation:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx @
|
|
14
|
+
npx @uocnv1998/agent-kit --role=<role_name>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Replace `<role_name>` with one of the supported roles.
|
|
18
18
|
|
|
19
19
|
### Example:
|
|
20
20
|
```bash
|
|
21
|
-
npx @
|
|
21
|
+
npx @uocnv1998/agent-kit --role=dev
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## 🎭 Supported Roles
|
|
@@ -46,10 +46,10 @@ your-project/
|
|
|
46
46
|
|
|
47
47
|
## ⚙️ How it Works
|
|
48
48
|
|
|
49
|
-
The CLI copies pre-defined templates from the `@
|
|
49
|
+
The CLI copies pre-defined templates from the `@uocnv1998/agent-kit` package into your local `.agent` folder:
|
|
50
50
|
1. **Selective Skills**: Only the skills relevant to the chosen role are copied.
|
|
51
51
|
2. **Workflows**: Role-specific `*-workflow.md` files are placed in the workflows directory.
|
|
52
|
-
3. **Rules**: Role-specific
|
|
52
|
+
3. **Rules**: Role-specific `GEMINI.md` rules are established to guide the agent's behavior.
|
|
53
53
|
|
|
54
54
|
## 🤝 Contributing
|
|
55
55
|
|