Add ephemeral environments pattern to canvas-builder#19
Open
bender-rodriguez-unit1 wants to merge 2 commits into
Open
Add ephemeral environments pattern to canvas-builder#19bender-rodriguez-unit1 wants to merge 2 commits into
bender-rodriguez-unit1 wants to merge 2 commits into
Conversation
added 2 commits
April 27, 2026 09:44
Reference architecture for on-demand preview/staging environments. 3-layer design: - Layer 1: Lifecycle core (5 workflow paths, 3-namespace memory, critical rules) - Layer 2: Trigger strategies (command-based, auto-on-PR, chat, manual, hybrid) - Layer 3: Integration substitution (infra, SCM, notifications) Includes lessons learned from production use.
- Removed all provider-specific tables (DO, AWS, GitHub, GitLab, etc.) - Replaced 'ask the user' with 'discover via CLI first, then confirm' - Stripped provider-specific expressions (agent checks provider docs) - Simplified layer naming to sequential steps - Kept: lifecycle paths, memory design, critical rules, lessons learned - Halved the doc size while keeping all the architecture
shiroyasha
reviewed
Apr 27, 2026
|
|
||
| ## Critical Rules | ||
|
|
||
| These are real bugs found in production. Don't skip them. |
shiroyasha
reviewed
Apr 27, 2026
| ```bash | ||
| superplane index triggers --from <scm-provider> | ||
| superplane index components --from <scm-provider> | ||
| superplane index components --from <infra-provider> |
There was a problem hiding this comment.
I think this is no longer true. cc @lucaspin
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
Adds a reference architecture pattern for ephemeral/preview environments to the
superplane-canvas-builderskill.Why
This pattern was built and battle-tested during Mission 2 (ephemeral environments for
puppies-inc/storejs). It captures the architecture, memory design, critical rules, and lessons learned so future agents can reproduce it for any user — regardless of what integrations they use.What's in it
environments,env-internal,env-metadataThe doc is integration-agnostic — instead of hardcoded substitution tables, it teaches agents to discover what's connected and pick the right components at build time.
Files changed
skills/superplane-canvas-builder/SKILL.md— added Patterns section with linkskills/superplane-canvas-builder/references/patterns/ephemeral-environments.md— the pattern doc (143 lines, new)