@lousy-agents/cli 2.8.0 → 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 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 agent skill frontmatter.
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 agent skill frontmatter in SKILL.md files
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 agent skill frontmatter
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 agent skill frontmatter:**
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)** - Agent skill frontmatter validation
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