docs(pgpm skill): document zero-config init + non-interactive pgpm extension#1357
Closed
pyramation wants to merge 1 commit into
Closed
docs(pgpm skill): document zero-config init + non-interactive pgpm extension#1357pyramation wants to merge 1 commit into
pyramation wants to merge 1 commit into
Conversation
…tension pgpm init now scaffolds with no extensions by default; pgpm extension gained non-interactive --add/--remove/--set flags and rewrites only the requires line. Correct the skill's now-false 'fully interactive, don't use in CI' claims for init and extension, and drop legacy uuid-ossp/plpgsql requires examples.
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Contributor
|
Consolidated into #1358 per request to reduce open PR count. Same commits, merged into one branch. |
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.
Summary
Brings the
pgpmagent skill in line with the new extensions workflow (default-no-extensionspgpm init+ hardenedpgpm extension). The most important fix is a correctness one: the skill previously told agents thatpgpm initandpgpm extensionare "fully interactive — don't use in CI", which is now false.Changes across
.agents/skills/pgpm/:SKILL.md: quickstart no longer says "select extensions"; the.controlsection notes a fresh module has norequiresline; the command table and the CI-safety section now describe the non-interactive paths:pgpm init --moduleName <module> [--extensions a,b](no--extensions⇒ zero extensions;init workspaceuses--name)pgpm extension --add/--remove/--set a,b(no flag ⇒ interactive picker)references/extensions.md,references/cli.md,references/dependencies.md,references/workspace.md: document the--add/--remove/--setflags, note thatpgpm extensionrewrites only therequiresline (preserving custom.controlfields), and drop the legacyrequires = 'uuid-ossp,plpgsql'examples in favor ofpgcrypto/module deps.Docs-only; no code changes. Pairs with the tutorial refresh in
constructive-io/constructive.io#14.Link to Devin session: https://app.devin.ai/sessions/424b76f81a60499493ac946b57136ad9
Requested by: @pyramation