@lousy-agents/cli 5.2.3 → 5.2.5

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": "5.2.3",
3
+ "version": "5.2.5",
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": {
@@ -3,7 +3,7 @@
3
3
  "image": "mcr.microsoft.com/devcontainers/javascript-node:24-bookworm",
4
4
  "features": {
5
5
  "ghcr.io/devcontainers/features/github-cli:1": {
6
- "version": "2.83.2"
6
+ "version": "2.88.1"
7
7
  },
8
8
  "ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
9
9
  "packages": "libnss3, libnspr4, libatk1.0-0, libatk-bridge2.0-0, libcups2, libdrm2, libdbus-1-3, libatspi2.0-0, libxcomposite1, libxdamage1, libxfixes3, libxrandr2, libgbm1, libxkbcommon0, libasound2, yamllint, shellcheck",
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Assign and Instruct Copilot
16
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
16
+ uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
17
17
  with:
18
18
  script: |
19
19
  const issue = context.payload.issue;
@@ -16,7 +16,7 @@
16
16
  "@emotion/server": "^11.11.0",
17
17
  "@mui/material": "^7.3.6",
18
18
  "@mui/material-nextjs": "^7.3.6",
19
- "next": "15.5.10",
19
+ "next": "15.5.12",
20
20
  "react": "19.2.4",
21
21
  "react-dom": "19.2.4"
22
22
  },
@@ -28,12 +28,12 @@
28
28
  "@types/node": "^24.0.0",
29
29
  "@types/react": "19.2.14",
30
30
  "@types/react-dom": "19.2.3",
31
- "@vitejs/plugin-react": "5.1.2",
31
+ "@vitejs/plugin-react": "5.2.0",
32
32
  "@vitest/ui": "4.0.15",
33
33
  "eslint": "^9",
34
- "eslint-config-next": "15.5.9",
34
+ "eslint-config-next": "15.5.12",
35
35
  "happy-dom": "^20.0.11",
36
- "jsdom": "27.3.0",
36
+ "jsdom": "27.4.0",
37
37
  "typescript": "^5",
38
38
  "vitest": "4.0.15",
39
39
  "whatwg-fetch": "3.6.20"
@@ -1,37 +0,0 @@
1
- name: "Copilot Setup Steps"
2
-
3
- on:
4
- workflow_dispatch:
5
- push:
6
- paths:
7
- - .github/workflows/copilot-setup-steps.yml
8
- pull_request:
9
- paths:
10
- - .github/workflows/copilot-setup-steps.yml
11
-
12
- jobs:
13
- copilot-setup-steps:
14
- runs-on: ubuntu-latest
15
- permissions:
16
- id-token: write
17
- contents: read
18
-
19
- steps:
20
- - name: Checkout code
21
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
22
-
23
- - name: Setup Node.js
24
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
25
- with:
26
- node-version-file: ".nvmrc"
27
-
28
- - name: Setup Actionlint
29
- run: |
30
- bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.7.9
31
- sudo mv actionlint /usr/local/bin/
32
-
33
- - name: Setup Yamllint
34
- run: pip install yamllint
35
-
36
- - name: Install dependencies
37
- run: npm ci