@lousy-agents/cli 4.0.1 → 5.0.0
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 +38 -0
- package/api/copilot-with-fastify/.vscode/mcp.json +1 -1
- package/api/copilot-with-fastify/package-lock.json +5202 -0
- package/api/copilot-with-fastify/src/app.integration.ts +45 -0
- package/api/copilot-with-fastify/src/app.test.ts +28 -0
- package/api/copilot-with-fastify/src/app.ts +11 -0
- package/api/copilot-with-fastify/src/index.ts +12 -0
- package/api/copilot-with-fastify/src/parse-port.test.ts +100 -0
- package/api/copilot-with-fastify/src/parse-port.ts +20 -0
- package/cli/copilot-with-citty/.vscode/mcp.json +1 -1
- package/dist/index.js +111 -73
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/ui/copilot-with-react/.vscode/mcp.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @lousy-agents/cli
|
|
2
|
+
|
|
3
|
+
CLI scaffolding for Lousy Agents.
|
|
4
|
+
|
|
5
|
+
Use this package to bootstrap new projects with testing, linting, AI assistant instructions, and GitHub Copilot setup.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @lousy-agents/cli init
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Common follow-up commands:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Generate Copilot setup workflow in an existing repository
|
|
17
|
+
npx @lousy-agents/cli copilot-setup
|
|
18
|
+
|
|
19
|
+
# Create new resources such as custom agents
|
|
20
|
+
npx @lousy-agents/cli new
|
|
21
|
+
|
|
22
|
+
# Validate skills, agents, and instruction files
|
|
23
|
+
npx @lousy-agents/cli lint
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
- Project overview: [README](https://github.com/zpratt/lousy-agents#readme)
|
|
29
|
+
- `init` command: [`docs/init.md`](https://github.com/zpratt/lousy-agents/blob/main/docs/init.md)
|
|
30
|
+
- `new` command: [`docs/new.md`](https://github.com/zpratt/lousy-agents/blob/main/docs/new.md)
|
|
31
|
+
- `lint` command: [`docs/lint.md`](https://github.com/zpratt/lousy-agents/blob/main/docs/lint.md)
|
|
32
|
+
- `copilot-setup` command: [`docs/copilot-setup.md`](https://github.com/zpratt/lousy-agents/blob/main/docs/copilot-setup.md)
|
|
33
|
+
|
|
34
|
+
## Reference Examples
|
|
35
|
+
|
|
36
|
+
- React webapp scaffold: [`packages/cli/ui/copilot-with-react`](https://github.com/zpratt/lousy-agents/tree/main/packages/cli/ui/copilot-with-react)
|
|
37
|
+
- Fastify API scaffold: [`packages/cli/api/copilot-with-fastify`](https://github.com/zpratt/lousy-agents/tree/main/packages/cli/api/copilot-with-fastify)
|
|
38
|
+
- Citty CLI scaffold: [`packages/cli/cli/copilot-with-citty`](https://github.com/zpratt/lousy-agents/tree/main/packages/cli/cli/copilot-with-citty)
|