feat: add constructive-cli-server skill for cnc server setup and usage#35
Merged
pyramation merged 2 commits intomainfrom Feb 23, 2026
Merged
feat: add constructive-cli-server skill for cnc server setup and usage#35pyramation merged 2 commits intomainfrom
pyramation merged 2 commits intomainfrom
Conversation
🤖 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:
|
The origin option in cnc server does not have useDefault: true, so it prompts interactively if omitted. Updated docs to make this clear for CI/script usage.
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.
feat: add constructive-cli-server skill for cnc server setup
Summary
Adds a new skill documenting how to start and configure the Constructive GraphQL server via
cnc server. Covers local development setup, non-interactive/CI usage, endpoint routing, environment variables, troubleshooting, and a ready-to-paste GitHub Actions snippet.This complements the existing
constructive-local-envskill (which covers database deployment) by focusing specifically on the GraphQL server layer.Review & Testing Checklist for Human
--databaseflag exists oncnc server— The command reference lists--database <name>as an option, but the actual source inconstructive/packages/cli/src/commands/server.tsdoesn't define adatabasequestion. The server readsPGDATABASEenv var or prompts interactively. This flag may be fabricated and should be removed if so.pgpm deploy --yesflag — The examples usepgpm deploy --createdb --recursive --yes, but--yeswasn't shown inpgpm deploy --help. Confirm this flag exists or remove it.Notes
cnc server+ CLI e2e tests in GitHub Actions.@constructive-io/cli 7.1.3+in the compatibility field; will need updating as new versions are released.Link to Devin run: https://app.devin.ai/sessions/d41228699b3a46de9e73cc13dda02882
Requested by: @pyramation