Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ jobs:
uses: devcontainers/action@v1
with:
validate-only: "true"
# Without this the action scandirs '' and crashes with ENOENT before
# reading any metadata. release.yaml passes the same path to publish.
base-path-to-features: "./src"
2 changes: 2 additions & 0 deletions src/ai-clis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,5 @@ Use `install` to list exactly the CLIs you need — new CLIs added in future rel
```

**Requires:** Node.js (installs after `ghcr.io/devcontainers/features/node`)

**uv:** `specifyCli` installs via [uv](https://docs.astral.sh/uv/). This feature installs uv itself if it isn't already present, so no extra feature is required. If you do include a uv-providing feature — this repo's `python-tools`, or one of the community `uv` features — it is ordered first via `installsAfter` and reused, avoiding a duplicate install.
6 changes: 5 additions & 1 deletion src/ai-clis/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/node"
"ghcr.io/devcontainers/features/node",
"ghcr.io/get2knowio/devcontainer-features/python-tools",
"ghcr.io/va-h/devcontainers-features/uv",
"ghcr.io/jsburckhardt/devcontainer-features/uv",
"ghcr.io/gvatsal60/dev-container-features/uv"
]
}
Loading