feat(ledger): register dgx-spark-cli as a downstream consumer#47
Merged
Conversation
Review Summary by QodoRegister dgx-spark-cli as downstream consumer in skill registry
WalkthroughsDescription• Register dgx-spark-cli as downstream consumer of all canonical skills • Add dgx-spark-cli to devague-origin operator skills downstream lists • Bump version from 0.8.2 to 0.8.3 in pyproject.toml • Update CHANGELOG.md with new 0.8.3 release entry Diagramflowchart LR
A["dgx-spark-cli<br/>provisioned"] -->|"register as<br/>downstream"| B["Canonical Skills<br/>in skill-sources.md"]
A -->|"register as<br/>downstream"| C["Devague Operator<br/>Skills"]
D["Version Bump<br/>0.8.2 → 0.8.3"] -->|"update"| E["CHANGELOG.md<br/>& pyproject.toml"]
File Changes1. docs/skill-sources.md
|
Code Review by Qodo
Context used✅ Compliance rules (platform):
48 rules 1. Stale uv.lock version
|
Provision agentculture/dgx-spark-cli via `guild create --apply` (--command spark, backend claude) — an agent and CLI for operating an NVIDIA DGX Spark (Grace-Blackwell) workstation — and register it as a downstream consumer of every canonical skill in docs/skill-sources.md. The PyPI dist defaults to the repo token (dgx-spark-cli); the console command is the shorter 'spark'. Refresh uv.lock. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
a83563b to
6228de8
Compare
| [project] | ||
| name = "guild-cli" | ||
| version = "0.8.2" | ||
| version = "0.8.3" |
There was a problem hiding this comment.
1. Stale uv.lock version 🐞 Bug ☼ Reliability
pyproject.toml is bumped to version 0.8.3 but uv.lock still pins the editable guild-cli package as 0.8.2, making the lockfile inconsistent with the project metadata. This can force unexpected lock regeneration or cause uv sync --locked users to operate on a stale lock state.
Agent Prompt
## Issue description
The project version was bumped in `pyproject.toml`, but the committed `uv.lock` still contains the prior version for the editable `guild-cli` package, leaving the lockfile out of sync.
## Issue Context
`uv.lock` is intended to represent the locked state corresponding to the current project metadata; keeping it stale breaks reproducibility expectations and causes churn for anyone running locked syncs.
## Fix Focus Areas
- pyproject.toml[1-4]
- uv.lock[180-187]
## Suggested fix
1. Regenerate the lockfile (e.g., run `uv lock` or the repo’s standard lock refresh command).
2. Ensure the `[[package]] name = "guild-cli"` entry in `uv.lock` reflects version `0.8.3`.
3. Commit the updated `uv.lock`.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What
Register
dgx-spark-clias a downstream consumer of guildmaster's canonicalskill set in
docs/skill-sources.md.The agent was provisioned end-to-end with:
That created the live repo (
agentculture/dgx-spark-cli, genesis commit pushed,GitHub configured) and wrote the ledger registration locally. This PR lands that
ledger change on
main.Identifiers
dgx-spark-clisparksparkdgx-spark-cli(default — equals the repo token)claude(CLAUDE.md seed +culture.yamlsuffix)Only
--commandwas overridden (a shortsparkbinary); the dist defaults tothe repo token, so there is no dist-retarget step.
Changes
docs/skill-sources.md— adddgx-spark-clito the downstream column of everycanonical skill (and the devague-origin operator skills).
CHANGELOG.md/pyproject.toml— version bump0.8.2→0.8.3.uv.lock— refresh to the current package version.Still owed (outside this PR)
Register a Trusted Publisher for
dgx-spark-clion PyPI and TestPyPI(
guild createconfigures the GitHub side only).Run
/initin the new repo to expand the CLAUDE.md seed into a full runtimeprompt (define the DGX Spark device-setup / monitoring / workload behavior).
guildmaster (Claude)