@lousy-agents/cli 2.7.0 → 2.8.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 +14 -2
- package/api/copilot-with-fastify/vitest.integration.config.ts +2 -4
- package/dist/index.js +8010 -3429
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +156 -0
- package/dist/mcp-server.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## TL;DR
|
|
8
8
|
|
|
9
|
-
A CLI tool that scaffolds projects with the structure AI coding assistants need to be effective. Run `npx @lousy-agents/cli init` to create a new project with testing, linting, and GitHub Copilot configuration. Run `npx @lousy-agents/cli copilot-setup` in existing projects to generate a workflow that gives Copilot your environment context.
|
|
9
|
+
A CLI tool that scaffolds projects with the structure AI coding assistants need to be effective. Run `npx @lousy-agents/cli init` to create a new project with testing, linting, and GitHub Copilot configuration. Run `npx @lousy-agents/cli copilot-setup` in existing projects to generate a workflow that gives Copilot your environment context. Run `npx @lousy-agents/cli lint` to validate agent skill frontmatter.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -59,6 +59,7 @@ AI coding assistants work best when given clear constraints. Without structure,
|
|
|
59
59
|
|
|
60
60
|
- **[`init`](docs/init.md)** - Scaffold new projects with testing, linting, and Copilot configuration
|
|
61
61
|
- **[`new`](docs/new.md)** - Create new resources like custom GitHub Copilot agents
|
|
62
|
+
- **[`lint`](docs/lint.md)** - Validate agent skill frontmatter in SKILL.md files
|
|
62
63
|
- **[`copilot-setup`](docs/copilot-setup.md)** - Generate GitHub Actions workflows for Copilot environment setup
|
|
63
64
|
|
|
64
65
|
### MCP Server
|
|
@@ -97,6 +98,7 @@ For detailed documentation on each command, see:
|
|
|
97
98
|
|
|
98
99
|
- **[`init` command](docs/init.md)** - Scaffold new projects
|
|
99
100
|
- **[`new` command](docs/new.md)** - Create new resources
|
|
101
|
+
- **[`lint` command](docs/lint.md)** - Validate agent skill frontmatter
|
|
100
102
|
- **[`copilot-setup` command](docs/copilot-setup.md)** - Generate Copilot workflows
|
|
101
103
|
- **[MCP Server](docs/mcp-server.md)** - AI assistant integration
|
|
102
104
|
|
|
@@ -120,6 +122,12 @@ npx @lousy-agents/cli new --copilot-agent security
|
|
|
120
122
|
npx @lousy-agents/cli copilot-setup
|
|
121
123
|
```
|
|
122
124
|
|
|
125
|
+
**Lint agent skill frontmatter:**
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
npx @lousy-agents/cli lint
|
|
129
|
+
```
|
|
130
|
+
|
|
123
131
|
## Roadmap
|
|
124
132
|
|
|
125
133
|
| Feature | Status |
|
|
@@ -130,12 +138,15 @@ npx @lousy-agents/cli copilot-setup
|
|
|
130
138
|
| Scaffolding for GraphQL APIs | Not Started |
|
|
131
139
|
| Copilot setup package manager install steps | ✅ Complete |
|
|
132
140
|
| Copilot agent and skill scaffolding | ✅ Complete |
|
|
141
|
+
| Agent skill frontmatter linting | ✅ Complete |
|
|
133
142
|
| MCP server package | ✅ Complete |
|
|
143
|
+
| Claude Code web environment setup | ✅ Complete |
|
|
134
144
|
|
|
135
145
|
## Documentation
|
|
136
146
|
|
|
137
147
|
- **[`init` Command](docs/init.md)** - Project scaffolding
|
|
138
148
|
- **[`new` Command](docs/new.md)** - Create new resources
|
|
149
|
+
- **[`lint` Command](docs/lint.md)** - Agent skill frontmatter validation
|
|
139
150
|
- **[`copilot-setup` Command](docs/copilot-setup.md)** - Workflow generation
|
|
140
151
|
- **[MCP Server](docs/mcp-server.md)** - AI assistant integration
|
|
141
152
|
|
|
@@ -145,5 +156,6 @@ The repository includes fully working reference implementations demonstrating th
|
|
|
145
156
|
|
|
146
157
|
- **[ui/copilot-with-react](ui/copilot-with-react)** - Next.js + TypeScript webapp with pre-configured testing (Vitest), linting (Biome), GitHub Copilot instructions, and Dev Container configuration.
|
|
147
158
|
- **[api/copilot-with-fastify](api/copilot-with-fastify)** - Fastify + TypeScript REST API with Kysely, PostgreSQL, Testcontainers integration testing, and Dev Container configuration.
|
|
159
|
+
- **[cli/copilot-with-citty](cli/copilot-with-citty)** - Citty + TypeScript CLI with pre-configured testing (Vitest), linting (Biome), GitHub Copilot instructions, and Dev Container configuration.
|
|
148
160
|
|
|
149
|
-
Launch a GitHub Codespace to instantly spin up
|
|
161
|
+
Launch a GitHub Codespace to instantly spin up any of these environments and experiment with spec-driven development.
|