@lousy-agents/cli 2.7.1 → 2.9.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 +6 -5
- package/dist/index.js +40323 -15536
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +19999 -272
- package/dist/mcp-server.js.map +1 -1
- package/package.json +6 -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. Run `npx @lousy-agents/cli lint` to validate
|
|
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 skills, agents, and instruction files.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -59,7 +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
|
|
62
|
+
- **[`lint`](docs/lint.md)** - Validate skills, agents, and instruction files
|
|
63
63
|
- **[`copilot-setup`](docs/copilot-setup.md)** - Generate GitHub Actions workflows for Copilot environment setup
|
|
64
64
|
|
|
65
65
|
### MCP Server
|
|
@@ -98,7 +98,7 @@ For detailed documentation on each command, see:
|
|
|
98
98
|
|
|
99
99
|
- **[`init` command](docs/init.md)** - Scaffold new projects
|
|
100
100
|
- **[`new` command](docs/new.md)** - Create new resources
|
|
101
|
-
- **[`lint` command](docs/lint.md)** - Validate
|
|
101
|
+
- **[`lint` command](docs/lint.md)** - Validate skills, agents, and instruction files
|
|
102
102
|
- **[`copilot-setup` command](docs/copilot-setup.md)** - Generate Copilot workflows
|
|
103
103
|
- **[MCP Server](docs/mcp-server.md)** - AI assistant integration
|
|
104
104
|
|
|
@@ -122,7 +122,7 @@ npx @lousy-agents/cli new --copilot-agent security
|
|
|
122
122
|
npx @lousy-agents/cli copilot-setup
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
-
**Lint
|
|
125
|
+
**Lint skills, agents, and instructions:**
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
128
|
npx @lousy-agents/cli lint
|
|
@@ -139,6 +139,7 @@ npx @lousy-agents/cli lint
|
|
|
139
139
|
| Copilot setup package manager install steps | ✅ Complete |
|
|
140
140
|
| Copilot agent and skill scaffolding | ✅ Complete |
|
|
141
141
|
| Agent skill frontmatter linting | ✅ Complete |
|
|
142
|
+
| Agent and instruction quality linting | ✅ Complete |
|
|
142
143
|
| MCP server package | ✅ Complete |
|
|
143
144
|
| Claude Code web environment setup | ✅ Complete |
|
|
144
145
|
|
|
@@ -146,7 +147,7 @@ npx @lousy-agents/cli lint
|
|
|
146
147
|
|
|
147
148
|
- **[`init` Command](docs/init.md)** - Project scaffolding
|
|
148
149
|
- **[`new` Command](docs/new.md)** - Create new resources
|
|
149
|
-
- **[`lint` Command](docs/lint.md)** -
|
|
150
|
+
- **[`lint` Command](docs/lint.md)** - Skills, agents, and instruction quality validation
|
|
150
151
|
- **[`copilot-setup` Command](docs/copilot-setup.md)** - Workflow generation
|
|
151
152
|
- **[MCP Server](docs/mcp-server.md)** - AI assistant integration
|
|
152
153
|
|