feat(templates): full id + paste-ready integration code in get - #92
Merged
Merged
Conversation
`templates list` shows a shortened id to keep the table readable, so a customer could not copy the real identifier from it. Now: - `templates get <id>` prints the template's slug and a "Use this template" block with paste-ready create() calls for the Python SDK, TypeScript SDK, and CLI, using this template's id. If the template has no usable image yet, it says so instead of implying create() will boot it today. - `templates list` ends with a pointer to `templates get <id>` for the full id and the integration code. So a customer can find and copy everything they need to wire a template into their app straight from the CLI.
Merged
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.
Why
templates listshows a shortened id (readable table), so a customer couldn't copy the real identifier from it. And there was no "how do I use this" code anywhere in the CLI.What
templates get <id>now prints the slug and a "Use this template" block: paste-readycreate()calls for Python SDK, TypeScript SDK, and CLI using this template's id. Not-ready templates are flagged honestly.templates listends with a pointer totemplates get <id>for the full id + integration code.Pairs with the frontend change (MiosaOS template detail "Use this template" card).