@lousy-agents/cli 2.6.0 → 2.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lousy-agents/cli",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "CLI scaffolding tool that sets up projects with structure, instructions, and feedback loops for AI coding assistants",
5
5
  "type": "module",
6
6
  "repository": {
@@ -0,0 +1,67 @@
1
+ ---
2
+ name: CI
3
+
4
+ on:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
+ branches: [main]
9
+
10
+ permissions:
11
+ contents: read
12
+
13
+ jobs:
14
+ lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
+
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
22
+ with:
23
+ node-version-file: '.nvmrc'
24
+ cache: 'npm'
25
+
26
+ - name: Install dependencies
27
+ run: npm ci
28
+
29
+ - name: Lint
30
+ run: npx biome check
31
+
32
+ test:
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - name: Checkout
36
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
37
+
38
+ - name: Setup Node.js
39
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
40
+ with:
41
+ node-version-file: '.nvmrc'
42
+ cache: 'npm'
43
+
44
+ - name: Install dependencies
45
+ run: npm ci
46
+
47
+ - name: Run tests
48
+ run: npm test
49
+
50
+ build:
51
+ runs-on: ubuntu-latest
52
+ needs: [lint, test]
53
+ steps:
54
+ - name: Checkout
55
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
56
+
57
+ - name: Setup Node.js
58
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
59
+ with:
60
+ node-version-file: '.nvmrc'
61
+ cache: 'npm'
62
+
63
+ - name: Install dependencies
64
+ run: npm ci
65
+
66
+ - name: Build
67
+ run: npm run build
@@ -0,0 +1,19 @@
1
+ {
2
+ "servers": {
3
+ "context7": {
4
+ "type": "stdio",
5
+ "command": "npx",
6
+ "args": ["-y", "@upstash/context7-mcp"]
7
+ },
8
+ "sequential-thinking": {
9
+ "type": "stdio",
10
+ "command": "npx",
11
+ "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
12
+ },
13
+ "lousy-agents": {
14
+ "type": "stdio",
15
+ "command": "npx",
16
+ "args": ["-y", "-p", "@lousy-agents/cli", "lousy-agents-mcp"]
17
+ }
18
+ }
19
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "root": false,
2
+ "root": true,
3
3
  "$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
4
4
  "vcs": {
5
5
  "enabled": true,
@@ -0,0 +1,5 @@
1
+ node_modules/
2
+ dist/
3
+ .next/
4
+ coverage/
5
+ *.tgz