fix: update @constructive-io/sdk references to @constructive-io/node#83
Open
pyramation wants to merge 1 commit intomainfrom
Open
fix: update @constructive-io/sdk references to @constructive-io/node#83pyramation wants to merge 1 commit intomainfrom
pyramation wants to merge 1 commit intomainfrom
Conversation
- constructive-graphql SKILL.md: update 'Design DB' step to reference @constructive-io/node - constructive-safegres SKILL.md: update compatibility line - constructive SKILL.md: update Services & Schemas description - services-schemas.md: update description and compatibility metadata - services-schemas-entity-fields.md: update header reference Note: Code examples in services-schemas.md that use 'createClient from @constructive-io/sdk' are left as-is since they reflect generated ORM patterns that may still use that import path.
🤖 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:
|
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
Updates metadata, descriptions, and compatibility lines across 5 skill files to reference
@constructive-io/nodeinstead of the older@constructive-io/sdkpackage. This aligns the public skills repo with the broader migration happening in constructive-sdk-agentic-flow#22, which rewrites the agentic flow to use@constructive-io/nodewith TypeScript blueprints.Files changed:
constructive-graphql/SKILL.md— "Design DB" flow stepconstructive-safegres/SKILL.md— compatibility frontmatterconstructive/SKILL.md— Services & Schemas descriptionconstructive/references/services-schemas.md— description, compatibility, headingconstructive/references/services-schemas-entity-fields.md— headerWhat was NOT changed: The
import { createClient } from '@constructive-io/sdk'code examples insideservices-schemas.mdwere intentionally left as-is, since they reflect generated ORM patterns that may still use that import path.Review & Testing Checklist for Human
@constructive-io/nodeexposes the same service management APIs referenced inservices-schemas.md(e.g.,sdk.api.create,sdk.domain.create,sdk.apiSchema.create). If the node package has different import paths or API shapes, the code examples inservices-schemas.mdmay also need updating.services-schemas.mdshould also be updated — the metadata now says@constructive-io/nodebut the inline code still imports from@constructive-io/sdk. Confirm whether this inconsistency is acceptable or if the examples should be migrated too.@constructive-io/sdkreferences across the skills repo that should also be updated (e.g.,graphile-search/references/codegen-sdk-queries.md,constructive-graphql/references/codegen-orm-output.md).Notes
@constructive-io/node.@constructive-io/sdkreferences in codegen output docs (codegen-orm-output.md) were left untouched since those describe what the code generator actually produces, which may still emit@constructive-io/sdkimports.Link to Devin session: https://app.devin.ai/sessions/930052e50e294d428ba075050525e0f8
Requested by: @pyramation