@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 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)
@@ -13,7 +13,7 @@
13
13
  "lousy-agents": {
14
14
  "type": "stdio",
15
15
  "command": "npx",
16
- "args": ["-y", "-p", "@lousy-agents/cli", "lousy-agents-mcp"]
16
+ "args": ["-y", "-p", "@lousy-agents/mcp", "lousy-agents-mcp"]
17
17
  }
18
18
  }
19
19
  }