@builderos/create-agent-os 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. package/README.md +39 -0
  2. package/bin/cli.js +133 -0
  3. package/package.json +40 -0
  4. package/src/template/App.tsx +68 -0
  5. package/src/template/agent-os/commands/create-tasks/1-get-spec-requirements.md +19 -0
  6. package/src/template/agent-os/commands/create-tasks/2-create-tasks-list.md +234 -0
  7. package/src/template/agent-os/commands/create-tasks/create-tasks.md +254 -0
  8. package/src/template/agent-os/commands/design-screen/design-screen.md +32 -0
  9. package/src/template/agent-os/commands/design-shell/design-shell.md +34 -0
  10. package/src/template/agent-os/commands/design-tokens/design-tokens.md +36 -0
  11. package/src/template/agent-os/commands/export-product/export-product.md +44 -0
  12. package/src/template/agent-os/commands/implement-tasks/1-determine-tasks.md +13 -0
  13. package/src/template/agent-os/commands/implement-tasks/2-implement-tasks.md +63 -0
  14. package/src/template/agent-os/commands/implement-tasks/3-verify-implementation.md +113 -0
  15. package/src/template/agent-os/commands/implement-tasks/implement-tasks.md +207 -0
  16. package/src/template/agent-os/commands/initialize-design/initialize-design.md +54 -0
  17. package/src/template/agent-os/commands/orchestrate-tasks/orchestrate-tasks.md +180 -0
  18. package/src/template/agent-os/commands/plan-product/1-product-concept.md +53 -0
  19. package/src/template/agent-os/commands/plan-product/2-create-mission.md +78 -0
  20. package/src/template/agent-os/commands/plan-product/3-create-roadmap.md +73 -0
  21. package/src/template/agent-os/commands/plan-product/4-create-tech-stack.md +46 -0
  22. package/src/template/agent-os/commands/plan-product/plan-product.md +241 -0
  23. package/src/template/agent-os/commands/sample-data/sample-data.md +51 -0
  24. package/src/template/agent-os/commands/scaffold-implementation/scaffold-implementation.md +36 -0
  25. package/src/template/agent-os/commands/screenshot-design/screenshot-design.md +21 -0
  26. package/src/template/agent-os/commands/shape-spec/1-initialize-spec.md +95 -0
  27. package/src/template/agent-os/commands/shape-spec/2-shape-spec.md +300 -0
  28. package/src/template/agent-os/commands/shape-spec/shape-spec.md +40 -0
  29. package/src/template/agent-os/commands/write-spec/write-spec.md +134 -0
  30. package/src/template/agent-os/config.yml +13 -0
  31. package/src/template/agent-os/product/mission.md +29 -0
  32. package/src/template/agent-os/product/roadmap.md +9 -0
  33. package/src/template/agent-os/product/tech-stack.md +14 -0
  34. package/src/template/agent-os/specs/README.md +1 -0
  35. package/src/template/agent-os/standards/backend/api.md +10 -0
  36. package/src/template/agent-os/standards/backend/migrations.md +9 -0
  37. package/src/template/agent-os/standards/backend/models.md +10 -0
  38. package/src/template/agent-os/standards/backend/queries.md +9 -0
  39. package/src/template/agent-os/standards/frontend/accessibility.md +10 -0
  40. package/src/template/agent-os/standards/frontend/components.md +11 -0
  41. package/src/template/agent-os/standards/frontend/css.md +7 -0
  42. package/src/template/agent-os/standards/frontend/responsive.md +11 -0
  43. package/src/template/agent-os/standards/global/coding-style.md +10 -0
  44. package/src/template/agent-os/standards/global/commenting.md +5 -0
  45. package/src/template/agent-os/standards/global/conventions.md +11 -0
  46. package/src/template/agent-os/standards/global/error-handling.md +9 -0
  47. package/src/template/agent-os/standards/global/tech-stack.md +31 -0
  48. package/src/template/agent-os/standards/global/validation.md +11 -0
  49. package/src/template/agent-os/standards/testing/test-writing.md +9 -0
  50. package/src/template/agent-os-ui/README.md +73 -0
  51. package/src/template/agent-os-ui/package-lock.json +5028 -0
  52. package/src/template/agent-os-ui/package.json +52 -0
  53. package/src/template/agent-os-ui/postcss.config.js +6 -0
  54. package/src/template/agent-os-ui/src/components/AgentShell.tsx +31 -0
  55. package/src/template/agent-os-ui/src/components/AgentSidebar.tsx +65 -0
  56. package/src/template/agent-os-ui/src/components/GuidanceCard.tsx +75 -0
  57. package/src/template/agent-os-ui/src/components/MarkdownViewer.tsx +25 -0
  58. package/src/template/agent-os-ui/src/components/PromptButton.tsx +28 -0
  59. package/src/template/agent-os-ui/src/components/StatusItem.tsx +45 -0
  60. package/src/template/agent-os-ui/src/components/ThemeToggle.tsx +72 -0
  61. package/src/template/agent-os-ui/src/index.ts +11 -0
  62. package/src/template/agent-os-ui/src/style.css +3 -0
  63. package/src/template/agent-os-ui/tailwind.config.js +50 -0
  64. package/src/template/agent-os-ui/tsconfig.json +33 -0
  65. package/src/template/agent-os-ui/vite.config.ts +32 -0
  66. package/src/template/control-center/backend/backend.log +2 -0
  67. package/src/template/control-center/backend/index.js +228 -0
  68. package/src/template/control-center/backend/package-lock.json +951 -0
  69. package/src/template/control-center/backend/package.json +19 -0
  70. package/src/template/control-center/frontend/README.md +73 -0
  71. package/src/template/control-center/frontend/eslint.config.js +23 -0
  72. package/src/template/control-center/frontend/index.html +21 -0
  73. package/src/template/control-center/frontend/package-lock.json +5752 -0
  74. package/src/template/control-center/frontend/package.json +42 -0
  75. package/src/template/control-center/frontend/public/runtime-config.json +11 -0
  76. package/src/template/control-center/frontend/public/vite.svg +1 -0
  77. package/src/template/control-center/frontend/src/App.css +42 -0
  78. package/src/template/control-center/frontend/src/App.tsx +738 -0
  79. package/src/template/control-center/frontend/src/assets/react.svg +1 -0
  80. package/src/template/control-center/frontend/src/components/ThemeToggle.tsx +64 -0
  81. package/src/template/control-center/frontend/src/components/ui/ToastContext.tsx +81 -0
  82. package/src/template/control-center/frontend/src/index.css +194 -0
  83. package/src/template/control-center/frontend/src/main.tsx +14 -0
  84. package/src/template/control-center/frontend/src/vite-env.d.ts +1 -0
  85. package/src/template/control-center/frontend/tsconfig.app.json +28 -0
  86. package/src/template/control-center/frontend/tsconfig.json +7 -0
  87. package/src/template/control-center/frontend/tsconfig.node.json +26 -0
  88. package/src/template/control-center/frontend/vite.config.ts +22 -0
  89. package/src/template/design/.claude/commands/design-os/data-model.md +122 -0
  90. package/src/template/design/.claude/commands/design-os/design-screen.md +309 -0
  91. package/src/template/design/.claude/commands/design-os/design-shell.md +238 -0
  92. package/src/template/design/.claude/commands/design-os/design-tokens.md +166 -0
  93. package/src/template/design/.claude/commands/design-os/export-product.md +1105 -0
  94. package/src/template/design/.claude/commands/design-os/product-roadmap.md +121 -0
  95. package/src/template/design/.claude/commands/design-os/product-vision.md +99 -0
  96. package/src/template/design/.claude/commands/design-os/sample-data.md +263 -0
  97. package/src/template/design/.claude/commands/design-os/screenshot-design.md +112 -0
  98. package/src/template/design/.claude/commands/design-os/shape-section.md +138 -0
  99. package/src/template/design/.claude/skills/frontend-design/SKILL.md +42 -0
  100. package/src/template/design/.github/CODE_OF_CONDUCT.md +5 -0
  101. package/src/template/design/.github/CONTRIBUTING.md +51 -0
  102. package/src/template/design/.github/ISSUE_TEMPLATE/config.yml +22 -0
  103. package/src/template/design/.github/PULL_REQUEST_TEMPLATE.md +20 -0
  104. package/src/template/design/.github/SECURITY.yml +5 -0
  105. package/src/template/design/.github/SUPPORT.md +19 -0
  106. package/src/template/design/.github/workflows/pr-decline.yml +135 -0
  107. package/src/template/design/.github/workflows/stale.yml +25 -0
  108. package/src/template/design/CHANGELOG.md +13 -0
  109. package/src/template/design/LICENSE +21 -0
  110. package/src/template/design/README.md +54 -0
  111. package/src/template/design/agents.md +218 -0
  112. package/src/template/design/claude.md +1 -0
  113. package/src/template/design/components.json +22 -0
  114. package/src/template/design/docs/codebase-implementation.md +153 -0
  115. package/src/template/design/docs/design-section.md +135 -0
  116. package/src/template/design/docs/export.md +149 -0
  117. package/src/template/design/docs/getting-started.md +59 -0
  118. package/src/template/design/docs/index.md +56 -0
  119. package/src/template/design/docs/product-planning.md +113 -0
  120. package/src/template/design/docs/requirements.md +22 -0
  121. package/src/template/design/docs/usage.md +62 -0
  122. package/src/template/design/eslint.config.js +23 -0
  123. package/src/template/design/index.html +21 -0
  124. package/src/template/design/package-lock.json +5473 -0
  125. package/src/template/design/package.json +47 -0
  126. package/src/template/design/product-plan.zip +0 -0
  127. package/src/template/design/public/vite.svg +1 -0
  128. package/src/template/design/src/assets/react.svg +1 -0
  129. package/src/template/design/src/components/AppLayout.tsx +95 -0
  130. package/src/template/design/src/components/DataCard.tsx +139 -0
  131. package/src/template/design/src/components/DataModelPage.tsx +120 -0
  132. package/src/template/design/src/components/DesignPage.tsx +284 -0
  133. package/src/template/design/src/components/EmptyState.tsx +155 -0
  134. package/src/template/design/src/components/ExportPage.tsx +344 -0
  135. package/src/template/design/src/components/NextPhaseButton.tsx +33 -0
  136. package/src/template/design/src/components/PhaseNav.tsx +152 -0
  137. package/src/template/design/src/components/PhaseWarningBanner.tsx +81 -0
  138. package/src/template/design/src/components/ProductOverviewCard.tsx +102 -0
  139. package/src/template/design/src/components/ProductPage.tsx +97 -0
  140. package/src/template/design/src/components/ScreenDesignPage.tsx +370 -0
  141. package/src/template/design/src/components/ScreenDesignsCard.tsx +49 -0
  142. package/src/template/design/src/components/SectionPage.tsx +256 -0
  143. package/src/template/design/src/components/SectionsCard.tsx +47 -0
  144. package/src/template/design/src/components/SectionsPage.tsx +181 -0
  145. package/src/template/design/src/components/ShellCard.tsx +85 -0
  146. package/src/template/design/src/components/ShellDesignPage.tsx +242 -0
  147. package/src/template/design/src/components/SpecCard.tsx +121 -0
  148. package/src/template/design/src/components/StepIndicator.tsx +75 -0
  149. package/src/template/design/src/components/ThemeToggle.tsx +86 -0
  150. package/src/template/design/src/components/ui/ToastContext.tsx +81 -0
  151. package/src/template/design/src/components/ui/avatar.tsx +53 -0
  152. package/src/template/design/src/components/ui/badge.tsx +46 -0
  153. package/src/template/design/src/components/ui/button.tsx +60 -0
  154. package/src/template/design/src/components/ui/card.tsx +92 -0
  155. package/src/template/design/src/components/ui/collapsible.tsx +48 -0
  156. package/src/template/design/src/components/ui/dialog.tsx +143 -0
  157. package/src/template/design/src/components/ui/dropdown-menu.tsx +255 -0
  158. package/src/template/design/src/components/ui/input.tsx +21 -0
  159. package/src/template/design/src/components/ui/label.tsx +22 -0
  160. package/src/template/design/src/components/ui/progress.tsx +24 -0
  161. package/src/template/design/src/components/ui/scroll-area.tsx +18 -0
  162. package/src/template/design/src/components/ui/select.tsx +67 -0
  163. package/src/template/design/src/components/ui/separator.tsx +28 -0
  164. package/src/template/design/src/components/ui/sheet.tsx +137 -0
  165. package/src/template/design/src/components/ui/skeleton.tsx +13 -0
  166. package/src/template/design/src/components/ui/switch.tsx +46 -0
  167. package/src/template/design/src/components/ui/table.tsx +116 -0
  168. package/src/template/design/src/components/ui/tabs.tsx +64 -0
  169. package/src/template/design/src/index.css +284 -0
  170. package/src/template/design/src/lib/data-model-loader.ts +91 -0
  171. package/src/template/design/src/lib/design-system-loader.ts +101 -0
  172. package/src/template/design/src/lib/product-loader.ts +221 -0
  173. package/src/template/design/src/lib/router.tsx +52 -0
  174. package/src/template/design/src/lib/section-loader.ts +272 -0
  175. package/src/template/design/src/lib/shell-loader.ts +175 -0
  176. package/src/template/design/src/lib/utils.ts +6 -0
  177. package/src/template/design/src/main.tsx +15 -0
  178. package/src/template/design/src/sections/.gitkeep +0 -0
  179. package/src/template/design/src/sections/ai-orchestration-engine-oai/OrchestrationEngine.tsx +348 -0
  180. package/src/template/design/src/sections/core-platform-shell/AppShell.tsx +403 -0
  181. package/src/template/design/src/sections/gemini-live-integration/GeminiIntegration.tsx +332 -0
  182. package/src/template/design/src/sections/interactive-2d-canvas/WhiteboardCanvas.tsx +334 -0
  183. package/src/template/design/src/sections/participation-equity-tracker/EquityTracker.tsx +383 -0
  184. package/src/template/design/src/sections/persistent-memory-system/PersistentMemory.tsx +308 -0
  185. package/src/template/design/src/sections/real-time-communication-layer/VideoSession.tsx +342 -0
  186. package/src/template/design/src/sections/visual-intelligence-agents/VisualAgents.tsx +311 -0
  187. package/src/template/design/src/types/product.ts +97 -0
  188. package/src/template/design/src/types/section.ts +33 -0
  189. package/src/template/design/tsconfig.app.json +34 -0
  190. package/src/template/design/tsconfig.json +13 -0
  191. package/src/template/design/tsconfig.node.json +26 -0
  192. package/src/template/design/vite.config.ts +18 -0
  193. package/src/template/package.json +27 -0
  194. package/src/template/vite.config.ts +16 -0
@@ -0,0 +1,138 @@
1
+ # Shape Section
2
+
3
+ You are helping the user define the specification for a section of their product. This is a conversational process to establish the scope of functionality, user flows, and UI requirements.
4
+
5
+ ## Step 1: Check Prerequisites
6
+
7
+ First, verify that `/product/product-roadmap.md` exists. If it doesn't:
8
+
9
+ "I don't see a product roadmap defined yet. Please run `/product-roadmap` first to define your product sections, then come back to shape individual sections."
10
+
11
+ Stop here if the roadmap doesn't exist.
12
+
13
+ ## Step 2: Identify the Target Section
14
+
15
+ Read `/product/product-roadmap.md` to get the list of available sections.
16
+
17
+ If there's only one section, auto-select it. If there are multiple sections, use the AskUserQuestion tool to ask which section the user wants to work on:
18
+
19
+ "Which section would you like to define the specification for?"
20
+
21
+ Present the available sections as options.
22
+
23
+ ## Step 3: Gather Initial Input
24
+
25
+ Once the section is identified, invite the user to share any initial thoughts:
26
+
27
+ "Let's define the scope and requirements for **[Section Title]**.
28
+
29
+ Do you have any notes or ideas about what this section should include? Share any thoughts about the features, user flows, or UI patterns you're envisioning. If you're not sure yet, we can start with questions."
30
+
31
+ Wait for their response. The user may provide raw notes or ask to proceed with questions.
32
+
33
+ ## Step 4: Ask Clarifying Questions
34
+
35
+ Use the AskUserQuestion tool to ask 4-6 targeted questions to define:
36
+
37
+ - **Main user actions/tasks** - What can users do in this section?
38
+ - **Information to display** - What data and content needs to be shown?
39
+ - **Key user flows** - What are the step-by-step interactions?
40
+ - **UI patterns** - Any specific interactions, layouts, or components needed?
41
+ - **Scope boundaries** - What should be explicitly excluded?
42
+
43
+ Example questions (adapt based on their input and the section):
44
+ - "What are the main actions a user can take in this section?"
45
+ - "What information needs to be displayed on the primary view?"
46
+ - "Walk me through the main user flow - what happens step by step?"
47
+ - "Are there any specific UI patterns you want to use (e.g., tables, cards, modals)?"
48
+ - "What's intentionally out of scope for this section?"
49
+ - "Are there multiple views needed (e.g., list view and detail view)?"
50
+
51
+ Ask questions one or two at a time, conversationally. Focus on user experience and interface requirements - no backend or database details.
52
+
53
+ ## Step 5: Ask About Shell Configuration
54
+
55
+ If a shell design has been created for this project (check if `/src/shell/components/AppShell.tsx` exists), ask the user about shell usage:
56
+
57
+ "Should this section's screen designs be displayed **inside the app shell** (with navigation header), or should they be **standalone pages** (without the shell)?
58
+
59
+ Most sections use the app shell, but some pages like public-facing views, landing pages, or embedded widgets should be standalone."
60
+
61
+ Use AskUserQuestion with options:
62
+ - "Inside app shell" - The default for most in-app sections
63
+ - "Standalone (no shell)" - For public pages, landing pages, or embeds
64
+
65
+ If no shell design exists yet, skip this question and default to using the shell.
66
+
67
+ ## Step 6: Present Draft and Refine
68
+
69
+ Once you have enough information, present a draft specification:
70
+
71
+ "Based on our discussion, here's the specification for **[Section Title]**:
72
+
73
+ **Overview:**
74
+ [2-3 sentence summary of what this section does]
75
+
76
+ **User Flows:**
77
+ - [Flow 1]
78
+ - [Flow 2]
79
+ - [Flow 3]
80
+
81
+ **UI Requirements:**
82
+ - [Requirement 1]
83
+ - [Requirement 2]
84
+ - [Requirement 3]
85
+
86
+ **Display:** [Inside app shell / Standalone]
87
+
88
+ Does this capture everything? Would you like to adjust anything?"
89
+
90
+ Iterate until the user is satisfied. Don't add features that weren't discussed. Don't leave out features that were discussed.
91
+
92
+ ## Step 7: Create the Spec File
93
+
94
+ Once the user approves, create the file at `product/sections/[section-id]/spec.md` with this exact format:
95
+
96
+ ```markdown
97
+ # [Section Title] Specification
98
+
99
+ ## Overview
100
+ [The finalized 2-3 sentence description]
101
+
102
+ ## User Flows
103
+ - [Flow 1]
104
+ - [Flow 2]
105
+ - [Flow 3]
106
+ [Add all flows discussed]
107
+
108
+ ## UI Requirements
109
+ - [Requirement 1]
110
+ - [Requirement 2]
111
+ - [Requirement 3]
112
+ [Add all requirements discussed]
113
+
114
+ ## Configuration
115
+ - shell: [true/false]
116
+ ```
117
+
118
+ **Important:**
119
+ - Set `shell: true` if the section should display inside the app shell (this is the default)
120
+ - Set `shell: false` if the section should display as a standalone page without the shell
121
+
122
+ The section-id is the slug version of the section title (lowercase, hyphens instead of spaces).
123
+
124
+ ## Step 8: Confirm and Next Steps
125
+
126
+ Let the user know:
127
+
128
+ "I've created the specification at `product/sections/[section-id]/spec.md`.
129
+
130
+ You can review the spec on the section page. When you're ready, run `/sample-data` to create sample data for this section."
131
+
132
+ ## Important Notes
133
+
134
+ - Be conversational and helpful, not robotic
135
+ - Ask follow-up questions when answers are vague
136
+ - Focus on UX and UI - don't discuss backend, database, or API details
137
+ - Keep the spec concise - only include what was discussed, no bloat
138
+ - The format must match exactly for the app to parse it correctly
@@ -0,0 +1,42 @@
1
+ ---
2
+ name: frontend-design
3
+ description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
4
+ license: Complete terms in LICENSE.txt
5
+ ---
6
+
7
+ This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
8
+
9
+ The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
10
+
11
+ ## Design Thinking
12
+
13
+ Before coding, understand the context and commit to a BOLD aesthetic direction:
14
+ - **Purpose**: What problem does this interface solve? Who uses it?
15
+ - **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
16
+ - **Constraints**: Technical requirements (framework, performance, accessibility).
17
+ - **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
18
+
19
+ **CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
20
+
21
+ Then implement working code (HTML/CSS/JS, React, Tailwind, etc.) that is:
22
+ - Production-grade and functional
23
+ - Visually striking and memorable
24
+ - Cohesive with a clear aesthetic point-of-view
25
+ - Meticulously refined in every detail
26
+
27
+ ## Frontend Aesthetics Guidelines
28
+
29
+ Focus on:
30
+ - **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
31
+ - **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
32
+ - **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
33
+ - **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
34
+ - **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
35
+
36
+ NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
37
+
38
+ Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
39
+
40
+ **IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
41
+
42
+ Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
@@ -0,0 +1,5 @@
1
+ # Code of Conduct
2
+
3
+ Be respectful, assume good intent, and keep discussion constructive and on-topic. Harassment or discrimination is not tolerated.
4
+
5
+ Contact: buildermethods.com/contact
@@ -0,0 +1,51 @@
1
+ # Contributing to Design OS
2
+
3
+ Thanks for considering a contribution! Design OS is free and open source, but to keep things manageable we follow a **Discussions-first workflow**.
4
+
5
+ ---
6
+
7
+ ## Where things go
8
+
9
+ - **Discussions (Bugs):** Report suspected bugs. Maintainers may promote confirmed bugs into Issues.
10
+ 👉 **Check the docs before posting:** [buildermethods.com/design-os](https://buildermethods.com/design-os)
11
+
12
+ - **Discussions (Ideas):** Share feature ideas and proposals.
13
+ 👉 **Check the docs first** to ensure it’s not already supported.
14
+
15
+ - **Discussions (Q&A):** Ask & answer community questions.
16
+
17
+ - **Builder Methods Pro:** Paid membership with guaranteed support responses → https://buildermethods.com/pro
18
+
19
+ ---
20
+
21
+ ## Pull Requests (read first!)
22
+
23
+ To avoid wasted effort and to protect maintainer time:
24
+
25
+ - **Bug-fix PRs:**
26
+ Please include `[bug fix]` in your PR title and clearly describe the steps to reproduce and test the fix.
27
+
28
+ - **Feature PRs:**
29
+ > 💡 **Ideas welcome!** We strongly recommend starting with a Discussion in our **Ideas** section to gather feedback and community support before submitting a PR. This helps us understand your use case and explore the best approach together.
30
+ > Please note: New features are rarely accepted into core as we must consider long-term roadmap, maintainability, and support implications. A declined PR doesn't mean "never"—it means "not now." Starting with a Discussion gives your idea the best chance of success.
31
+
32
+ - **Docs-only PRs:**
33
+ Typos, clarifications, and doc improvements are always welcomed.
34
+
35
+ ---
36
+
37
+ ## How to propose a new feature or integration
38
+
39
+ Open a Discussion in **Ideas** with:
40
+ - Problem & motivation
41
+ - Proposed change & alternatives
42
+ - User experience impact
43
+ - Updating & compatibility considerations
44
+
45
+ If a maintainer labels it **`approved`**, then a PR may be opened.
46
+
47
+ ---
48
+
49
+ ## Code of Conduct
50
+
51
+ By participating, you agree to our [Code of Conduct](./CODE_OF_CONDUCT.md). Be respectful and constructive.
@@ -0,0 +1,22 @@
1
+ blank_issues_enabled: false
2
+
3
+ contact_links:
4
+ - name: 🐛 Report a bug or propose a fix
5
+ url: https://github.com/buildermethods/design-os/discussions/categories/bugs
6
+ about: Already checked the docs and found a reproducible bug? Please report it in the 'Bugs' discussion area.
7
+
8
+ - name: 💡 Feature request or idea
9
+ url: https://github.com/buildermethods/design-os/discussions/categories/ideas
10
+ about: Request new features, integrations, or other improvements in the 'Ideas' discussion area.
11
+
12
+ - name: ❓ Ask a question
13
+ url: https://github.com/buildermethods/design-os/discussions/categories/q-a
14
+ about: For community support and general questions, use the 'Q&A' discussion area.
15
+
16
+ - name: 🎯 Member support request
17
+ url: https://buildermethods.com/pro
18
+ about: Join Builder Methods Pro for official Design OS support with guaranteed responses from Brian & team, plus access to community chat, workshops, courses and more.
19
+
20
+ - name: 📗 Check the official docs
21
+ url: https://buildermethods.com/design-os
22
+ about: Please review the docs before posting a bug, question, or idea.
@@ -0,0 +1,20 @@
1
+ ## Summary
2
+ <!-- What does this change do and why? Keep it tight. -->
3
+
4
+ ## Linked item
5
+ - Closes: #<number> (must be an open Issue) **OR**
6
+ - Implements: #<number> (must be a Discussion)
7
+
8
+ ## Checklist
9
+ - [ ] Linked to related Issue/Discussion
10
+ - [ ] Documented steps to test (below)
11
+ - [ ] Drafted “how to use” docs (if this adds new behavior)
12
+ - [ ] Backwards compatibility considered (notes if applicable)
13
+
14
+ ## Documented steps to test
15
+ 1.
16
+ 2.
17
+ 3.
18
+
19
+ ## Notes for reviewers
20
+ <!-- Anything to call out, screenshots, logs, perf notes, etc. -->
@@ -0,0 +1,5 @@
1
+ # Security Policy
2
+
3
+ Please do not open public issues for potential security problems.
4
+
5
+ Send potential security problems to brian@buildermethods.com and they will be addressed promptly.
@@ -0,0 +1,19 @@
1
+ # Support policy
2
+
3
+ Design OS is free and open source. To keep it sustainable, you can seek support in any of these ways:
4
+
5
+ - **[Documentation](https://buildermethods.com/design-os):** Complete and up-to-date guides for installation, updating, and usage of Design OS.
6
+
7
+ - **[Community Support (Free)](https://github.com/buildermethods/design-os/discussions):** Ask & answer questions with other users in the **Q&A** category of GitHub Discussions.
8
+
9
+ - **[Official Support (Paid)](https://buildermethods.com/pro):** For guaranteed responses from Brian & team, join **Builder Methods Pro**.
10
+
11
+ ---
12
+
13
+ ## Bugs
14
+ - Post suspected bugs in the **Bugs category** of Discussions. Maintainers may promote confirmed bugs to Issues for tracking and fixes.
15
+
16
+ ---
17
+
18
+ ## Feature ideas
19
+ Use the **Ideas category** of Discussions to propose and upvote new features and integration requests.
@@ -0,0 +1,135 @@
1
+ name: PR manual decline (label or button)
2
+
3
+ on:
4
+ pull_request_target:
5
+ types: [labeled]
6
+
7
+ workflow_dispatch:
8
+ inputs:
9
+ pr_number:
10
+ description: "PR number to act on"
11
+ required: true
12
+ reason:
13
+ description: "Reason to use"
14
+ required: true
15
+ type: choice
16
+ options: [Out of scope, Low info, Duplicate, Spam]
17
+
18
+ permissions:
19
+ pull-requests: write
20
+ contents: read
21
+
22
+ env:
23
+ REPO: ${{ github.repository }}
24
+ IDEAS_URL: https://github.com/buildermethods/design-os/discussions/categories/ideas
25
+ CONTRIBUTING_URL: https://github.com/buildermethods/design-os/blob/main/.github/CONTRIBUTING.md
26
+
27
+ jobs:
28
+ decline:
29
+ runs-on: ubuntu-latest
30
+
31
+ steps:
32
+ - name: Determine PR number and reason (from label or dispatch)
33
+ id: vars
34
+ uses: actions/github-script@v7
35
+ with:
36
+ script: |
37
+ let prNumber = "";
38
+ let reason = "";
39
+ let skip = false;
40
+
41
+ if (context.eventName === "pull_request_target" && context.payload.action === "labeled") {
42
+ prNumber = String(context.payload.pull_request.number);
43
+ const label = (context.payload.label?.name || "").trim();
44
+
45
+ const map = {
46
+ "Close PR: Out of scope": "Out of scope",
47
+ "Close PR: Low info": "Low info",
48
+ "Close PR: Duplicate": "Duplicate",
49
+ "Close PR: Spam": "Spam",
50
+ };
51
+
52
+ if (map[label]) {
53
+ reason = map[label];
54
+ } else {
55
+ skip = true; // not one of your decline labels
56
+ }
57
+ }
58
+
59
+ if (context.eventName === "workflow_dispatch") {
60
+ prNumber = (core.getInput("pr_number") || "").trim();
61
+ reason = (core.getInput("reason") || "").trim();
62
+ }
63
+
64
+ core.setOutput("skip", skip ? "true" : "false");
65
+ core.setOutput("pr", prNumber);
66
+ core.setOutput("reason", reason);
67
+
68
+ - name: Stop if not a decline event
69
+ if: steps.vars.outputs.skip == 'true' || steps.vars.outputs.pr == '' || steps.vars.outputs.reason == ''
70
+ run: echo "No decline action to run."
71
+
72
+ - name: Build canned message
73
+ if: steps.vars.outputs.skip != 'true' && steps.vars.outputs.pr != '' && steps.vars.outputs.reason != ''
74
+ id: msg
75
+ uses: actions/github-script@v7
76
+ env:
77
+ REASON: ${{ steps.vars.outputs.reason }} # <-- pass raw string
78
+ IDEAS_URL: ${{ env.IDEAS_URL }}
79
+ CONTRIBUTING_URL: ${{ env.CONTRIBUTING_URL }}
80
+ with:
81
+ script: |
82
+ const reason = process.env.REASON; // <-- read raw string
83
+ const IDEAS = process.env.IDEAS_URL;
84
+ const CONTRIB = process.env.CONTRIBUTING_URL;
85
+
86
+ let body = "";
87
+ switch (reason) {
88
+ case "Out of scope":
89
+ body =
90
+ "Thanks for the PR! After review, this change isn’t on the current roadmap for Design OS. " +
91
+ "We keep core focused to manage long-term maintenance and compatibility.\n\n" +
92
+ `If you'd like to continue the conversation, please start a proposal in **Ideas**: ${IDEAS}\n` +
93
+ "If you publish a fork/plugin/example, feel free to share it in **Show & Tell** so others can try it.\n\n" +
94
+ "_Closing to keep the backlog focused._";
95
+ break;
96
+
97
+ case "Low info":
98
+ body =
99
+ "Thanks for the PR! We’re missing required details for review.\n\n" +
100
+ "Please update the PR with:\n" +
101
+ "• **Summary**\n" +
102
+ "• **Checklist**\n" +
103
+ "• **Documented steps to test**\n\n" +
104
+ `Guidelines: ${CONTRIB}\n\n` +
105
+ "Once updated, you can open a new PR or ask a maintainer to reopen.";
106
+ break;
107
+
108
+ case "Duplicate":
109
+ body =
110
+ "Thanks for the PR! This appears to duplicate existing work or discussion. " +
111
+ "We’ll consolidate on the canonical thread/PR to reduce churn.\n\n" +
112
+ "_Closing this one to keep things tidy._";
113
+ break;
114
+
115
+ case "Spam":
116
+ body = "Closing this PR. It doesn’t meet our contribution policy.";
117
+ break;
118
+
119
+ default:
120
+ body = "Thanks for the PR! Closing per maintainer review.";
121
+ }
122
+
123
+ core.setOutput("body", body);
124
+
125
+ - name: Comment and close PR
126
+ if: steps.vars.outputs.skip != 'true' && steps.vars.outputs.pr != '' && steps.msg.outputs.body != ''
127
+ env:
128
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
129
+ REPO: ${{ env.REPO }}
130
+ run: |
131
+ PR="${{ steps.vars.outputs.pr }}"
132
+ BODY="${{ steps.msg.outputs.body }}"
133
+
134
+ gh pr comment "$PR" --repo "$REPO" --body "$BODY"
135
+ gh pr close "$PR" --repo "$REPO"
@@ -0,0 +1,25 @@
1
+ name: Close stale threads
2
+
3
+ on:
4
+ schedule:
5
+ - cron: "0 9 * * *" # daily at 09:00 UTC
6
+
7
+ permissions:
8
+ issues: write
9
+
10
+ jobs:
11
+ stale:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/stale@v9
15
+ with:
16
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
17
+ days-before-stale: 30
18
+ days-before-close: 7
19
+ stale-issue-message: >
20
+ This issue has been marked stale due to inactivity. If this is still a problem,
21
+ please add new details (logs, steps to reproduce) and we’ll revisit.
22
+ close-issue-message: >
23
+ Closing due to inactivity. If you can provide a fresh, reproducible case on the latest version,
24
+ please open a new bug report with full details. Thanks!
25
+ exempt-issue-labels: bug
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ Get notified of major releases by subscribing here:
4
+ https://buildermethods.com/design-os
5
+
6
+ ## [0.1.1] - 2025-12-18
7
+
8
+ - In the export package, consolidated '01-foundation' and '02-shell' into one.
9
+ - Updated README.md tips that come in the export.
10
+
11
+ ## [0.1] - 2025-12-16
12
+
13
+ - Initial release
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 CasJam Media LLC (Builder Methods)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,54 @@
1
+ <img width="1280" height="640" alt="Design OS" src="https://github.com/user-attachments/assets/a9c04258-7b9a-45b6-8475-3431cdf5dbe9" />
2
+
3
+ ## The missing design process between your idea and your codebase.
4
+
5
+ [Design OS](https://buildermethods.com/design-os) is a product planning and design tool that helps you define your product vision, structure your data model, design your UI, and export production-ready components for implementation. Rather than jumping straight into code, you work through a guided process that captures what you're building and why—then hands off everything your coding agent needs to build it right.
6
+
7
+ ## The Problem
8
+
9
+ AI coding tools are incredible at building fast. But the results often miss the mark. You describe what you want, the agent builds *something*, but it's not what you envisioned. The UI looks generic. Features get half-implemented. You spend as much time fixing and redirecting as you would have spent building.
10
+
11
+ **The core issue:** we're asking coding agents to figure out what to build *and* build it simultaneously. Design decisions get made on the fly, buried in code, impossible to adjust without starting over. There's no spec. No shared understanding. No source of truth for what "done" looks like.
12
+
13
+ ## The Design OS Process
14
+
15
+ Design OS powers a guided design and architecture process. You + AI, working together through structured steps:
16
+
17
+ 1. **Product Planning** — Define your vision, break down your roadmap, and model your data
18
+ 2. **Design System** — Choose colors, typography, and design your application shell
19
+ 3. **Section Design** — For each feature area: specify requirements, generate sample data, and design the screens
20
+ 4. **Export** — Generate a complete handoff package for implementation
21
+
22
+ Each step is a conversation. The AI asks questions, you provide direction, and together you shape a product that matches your vision—before any implementation begins.
23
+
24
+ ---
25
+
26
+ ## Documentation & Installation
27
+
28
+ Docs, installation, usage, & best practices 👉 [It's all here](https://buildermethods.com/design-os)
29
+
30
+ ---
31
+
32
+ ## Support, Training & Community
33
+
34
+ For official support, training, and community as you use Design OS—for yourself or with your team, consider joining _Builder Methods Pro_. You'll get access to Brian Casel (the creator) for questions, a community of builders using Design OS, plus all Builder Methods workshops and training on AI-first development.
35
+
36
+ 👉 [Join Builder Methods Pro](https://buildermethods.com/pro)
37
+
38
+ ---
39
+
40
+ ## Follow updates & releases
41
+
42
+ Read the [changelog](CHANGELOG.md)
43
+
44
+ [Subscribe to be notified of major new releases of Design OS](https://buildermethods.com/design-os)
45
+
46
+ ---
47
+
48
+ ## Created by Brian Casel @ Builder Methods
49
+
50
+ Created by Brian Casel, the creator of [Builder Methods](https://buildermethods.com), where Brian helps professional software developers and teams build with AI.
51
+
52
+ Get Brian's free resources on building with AI:
53
+ - [Builder Briefing newsletter](https://buildermethods.com)
54
+ - [YouTube](https://youtube.com/@briancasel)