@synap-core/workspace-templates 0.2.1

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.
@@ -0,0 +1,1355 @@
1
+ # Builder workspace template
2
+ # Developer + agent intelligence layer.
3
+ # Generated from synap-app/apps/devplane/lib/builderWorkspaceDefinition.ts (source of truth).
4
+
5
+ meta:
6
+ slug: builder-workspace
7
+ name: Builder
8
+ description: "Builder workspace — apps, features, services, packages, environments, deployments, recipes, decisions, incidents, plus delegated agent tasks/projects/skills/providers."
9
+ icon: wrench
10
+ color: "#7C3AED"
11
+ tags: [builder, developer, agents]
12
+ isPublic: true
13
+
14
+ workspace:
15
+ name: Builder
16
+ description: "Developer + agent intelligence layer. Combines the DevPlane developer schema (apps, packages, services, environments, deployments, recipes, decisions, incidents) with the OpenClaw delegation primitives (project, task, skill, provider). Agents are pod-level identities — not tracked as workspace entities."
17
+ proposalId: builder-workspace-v1
18
+ subtype: builder
19
+ visibility: pod_visible
20
+ capabilities:
21
+ - builder.apps
22
+ - builder.deployments
23
+ - builder.agents
24
+ - builder.packages
25
+
26
+ profiles:
27
+ - slug: devplane_app
28
+ displayName: App
29
+ icon: layout-dashboard
30
+ color: violet
31
+ description: A software application in your development stack
32
+ properties:
33
+ - slug: appName
34
+ label: App Name
35
+ valueType: string
36
+ inputType: text
37
+ - slug: description
38
+ label: Description
39
+ valueType: string
40
+ inputType: text
41
+ - slug: appStatus
42
+ label: Status
43
+ valueType: string
44
+ inputType: select
45
+ enumValues: [planning, active, deprecated, archived]
46
+ - slug: repoUrl
47
+ label: Repository URL
48
+ valueType: string
49
+ inputType: url
50
+ - slug: deployUrl
51
+ label: Deploy URL
52
+ valueType: string
53
+ inputType: url
54
+ - slug: techStack
55
+ label: Tech Stack
56
+ valueType: string
57
+ inputType: text
58
+ - slug: port
59
+ label: Dev Port
60
+ valueType: number
61
+ inputType: number
62
+ - slug: entityChannelId
63
+ label: AI Channel ID
64
+ valueType: string
65
+ inputType: text
66
+ - slug: deployTargets
67
+ label: Deployment Target IDs
68
+ valueType: string
69
+ inputType: text
70
+ - slug: autoDeployBranches
71
+ label: Auto-Deploy Branches
72
+ valueType: string
73
+ inputType: text
74
+ - slug: lastDeployCommit
75
+ label: Last Deploy Commit SHA
76
+ valueType: string
77
+ inputType: text
78
+ - slug: localRepoPath
79
+ label: Local Repository Path
80
+ valueType: string
81
+ inputType: text
82
+
83
+ - slug: devplane_feature
84
+ displayName: Feature
85
+ icon: git-branch
86
+ color: blue
87
+ description: A feature or work item with a persistent AI session
88
+ properties:
89
+ - slug: featureStatus
90
+ label: Status
91
+ valueType: string
92
+ inputType: select
93
+ enumValues: [backlog, in_progress, in_review, done, cancelled]
94
+ - slug: priority
95
+ label: Priority
96
+ valueType: string
97
+ inputType: select
98
+ enumValues: [low, medium, high, critical]
99
+ - slug: linkedApp
100
+ label: Linked App
101
+ valueType: string
102
+ inputType: text
103
+ - slug: linkedPackages
104
+ label: Linked Packages
105
+ valueType: string
106
+ inputType: text
107
+ - slug: linkedEnvironment
108
+ label: Linked Environment
109
+ valueType: string
110
+ inputType: text
111
+ - slug: estimatedDays
112
+ label: Estimated Days
113
+ valueType: number
114
+ inputType: number
115
+ - slug: entityChannelId
116
+ label: AI Channel ID
117
+ valueType: string
118
+ inputType: text
119
+ - slug: agent_status
120
+ label: Agent Status
121
+ valueType: string
122
+ inputType: select
123
+ enumValues: [idea, gathering_context, dispatched, planning, plan_ready, executing, verifying, debugging, awaiting_review, done, error]
124
+ constraints: { defaultValue: idea }
125
+ - slug: agent_phase
126
+ label: Agent Phase (current dispatch)
127
+ valueType: string
128
+ inputType: text
129
+ - slug: task_prompt
130
+ label: Task Prompt
131
+ valueType: string
132
+ inputType: text
133
+ - slug: acceptance_criteria
134
+ label: Acceptance Criteria
135
+ valueType: string
136
+ inputType: text
137
+ - slug: technical_notes
138
+ label: Technical Notes
139
+ valueType: string
140
+ inputType: text
141
+ - slug: plan
142
+ label: Implementation Plan
143
+ valueType: string
144
+ inputType: text
145
+ - slug: execution_summary
146
+ label: Execution Summary
147
+ valueType: string
148
+ inputType: text
149
+ - slug: verification_report
150
+ label: Verification Report
151
+ valueType: string
152
+ inputType: text
153
+ - slug: debug_summary
154
+ label: Debug Summary
155
+ valueType: string
156
+ inputType: text
157
+ - slug: dispatched_at
158
+ label: Dispatched At
159
+ valueType: string
160
+ inputType: text
161
+ - slug: t3code_cwd
162
+ label: T3 Code Working Directory
163
+ valueType: string
164
+ inputType: text
165
+ - slug: t3code_resume_cursor
166
+ label: T3 Code Resume Cursor
167
+ valueType: string
168
+ inputType: text
169
+
170
+ - slug: devplane_story
171
+ displayName: Story
172
+ icon: book-marked
173
+ color: violet
174
+ description: A user-facing story that orchestrates features and drives the AI pipeline
175
+ properties:
176
+ - slug: storyStatus
177
+ label: Status
178
+ valueType: string
179
+ inputType: select
180
+ enumValues: [backlog, in-progress, in-review, done]
181
+ constraints: { defaultValue: backlog }
182
+ - slug: priority
183
+ label: Priority
184
+ valueType: string
185
+ inputType: select
186
+ enumValues: [low, medium, high]
187
+ constraints: { defaultValue: medium }
188
+ - slug: appId
189
+ label: Linked App ID
190
+ valueType: string
191
+ inputType: text
192
+ - slug: featureIds
193
+ label: Linked Feature IDs (comma-separated)
194
+ valueType: string
195
+ inputType: text
196
+ - slug: packageIds
197
+ label: Linked Package IDs (comma-separated)
198
+ valueType: string
199
+ inputType: text
200
+ - slug: entityChannelId
201
+ label: AI Channel ID
202
+ valueType: string
203
+ inputType: text
204
+ - slug: agent_status
205
+ label: Agent Status
206
+ valueType: string
207
+ inputType: select
208
+ enumValues: [idle, gathering_context, planning, awaiting_plan_approval, executing, verifying, awaiting_deploy_approval, deploying, done, blocked]
209
+ constraints: { defaultValue: idle }
210
+ - slug: context_doc_id
211
+ label: Context Doc ID
212
+ valueType: string
213
+ inputType: text
214
+ - slug: plan_proposal_id
215
+ label: Plan Proposal ID
216
+ valueType: string
217
+ inputType: text
218
+ - slug: last_run_id
219
+ label: Last Agent Run ID
220
+ valueType: string
221
+ inputType: text
222
+ - slug: blocked_reason
223
+ label: Blocked Reason
224
+ valueType: string
225
+ inputType: text
226
+ - slug: last_completed_phase
227
+ label: Last Completed Phase
228
+ valueType: string
229
+ inputType: select
230
+ enumValues: [gather, plan, execute, verify, deploy]
231
+ - slug: retry_count
232
+ label: Retry Count
233
+ valueType: number
234
+ inputType: number
235
+ constraints: { defaultValue: 0 }
236
+ - slug: max_retries
237
+ label: Max Retries
238
+ valueType: number
239
+ inputType: number
240
+ constraints: { defaultValue: 3 }
241
+
242
+ - slug: devplane_service
243
+ displayName: Service
244
+ icon: server
245
+ color: cyan
246
+ description: A backend service or microservice
247
+ properties:
248
+ - slug: serviceStatus
249
+ label: Status
250
+ valueType: string
251
+ inputType: select
252
+ enumValues: [healthy, degraded, down, maintenance]
253
+ - slug: serviceType
254
+ label: Type
255
+ valueType: string
256
+ inputType: select
257
+ enumValues: [api, worker, cron, database, cache, queue, other]
258
+ - slug: host
259
+ label: Host
260
+ valueType: string
261
+ inputType: text
262
+ - slug: servicePort
263
+ label: Port
264
+ valueType: number
265
+ inputType: number
266
+ - slug: healthUrl
267
+ label: Health Check URL
268
+ valueType: string
269
+ inputType: url
270
+ - slug: linkedApp
271
+ label: Linked App
272
+ valueType: string
273
+ inputType: text
274
+ - slug: linkedEnvironmentId
275
+ label: Linked Server
276
+ valueType: string
277
+ inputType: text
278
+ - slug: repoLocalPath
279
+ label: Repo Local Path
280
+ valueType: string
281
+ inputType: text
282
+
283
+ - slug: devplane_package
284
+ displayName: Package
285
+ icon: package
286
+ color: amber
287
+ description: An npm/pnpm package — tracked with health, graph edges, and publish history
288
+ properties:
289
+ - slug: packageName
290
+ label: Package Name
291
+ valueType: string
292
+ inputType: text
293
+ - slug: packageVersion
294
+ label: Version
295
+ valueType: string
296
+ inputType: text
297
+ - slug: isPublished
298
+ label: Published
299
+ valueType: boolean
300
+ inputType: checkbox
301
+ - slug: packageRegistry
302
+ label: Registry
303
+ valueType: string
304
+ inputType: select
305
+ enumValues: [npm, github, private, local]
306
+ - slug: dependsOn
307
+ label: Depends On
308
+ valueType: string
309
+ inputType: text
310
+ - slug: consumedByApps
311
+ label: Consumed By Apps
312
+ valueType: string
313
+ inputType: text
314
+ - slug: healthScore
315
+ label: Health Score
316
+ valueType: number
317
+ inputType: number
318
+ - slug: healthGrade
319
+ label: Health Grade
320
+ valueType: string
321
+ inputType: select
322
+ enumValues: [A, B, C, D, F]
323
+ - slug: lastHealthCheck
324
+ label: Last Health Check
325
+ valueType: string
326
+ inputType: text
327
+ - slug: staleStatus
328
+ label: NPM Status
329
+ valueType: string
330
+ inputType: select
331
+ enumValues: [up-to-date, stale, local, unknown]
332
+ - slug: uncommittedCount
333
+ label: Uncommitted Files
334
+ valueType: number
335
+ inputType: number
336
+ - slug: entityChannelId
337
+ label: AI Channel ID
338
+ valueType: string
339
+ inputType: text
340
+ - slug: packagePath
341
+ label: Local Path
342
+ valueType: string
343
+ inputType: text
344
+
345
+ - slug: devplane_environment
346
+ displayName: Server
347
+ icon: server
348
+ color: teal
349
+ description: A server or deployment target — SSH-accessible, provider-agnostic
350
+ properties:
351
+ - slug: envType
352
+ label: Environment
353
+ valueType: string
354
+ inputType: select
355
+ enumValues: [local, development, staging, production]
356
+ - slug: host
357
+ label: Host / IP
358
+ valueType: string
359
+ inputType: text
360
+ - slug: envUrl
361
+ label: App URL
362
+ valueType: string
363
+ inputType: url
364
+ - slug: isActive
365
+ label: Active
366
+ valueType: boolean
367
+ inputType: checkbox
368
+ - slug: sshUser
369
+ label: SSH User
370
+ valueType: string
371
+ inputType: text
372
+ - slug: linkedAppSlug
373
+ label: Linked App
374
+ valueType: string
375
+ inputType: text
376
+ - slug: kamalRole
377
+ label: Role
378
+ valueType: string
379
+ inputType: select
380
+ enumValues: [web, worker, db, cache, all]
381
+ - slug: serverProvider
382
+ label: Provider
383
+ valueType: string
384
+ inputType: select
385
+ enumValues: [hetzner, digitalocean, aws, gcp, local, other]
386
+
387
+ - slug: deployment_target
388
+ displayName: Deployment Target
389
+ icon: cloud
390
+ color: emerald
391
+ description: A deployment provider target - Coolify, Vercel, or custom
392
+ properties:
393
+ - slug: targetType
394
+ label: Provider Type
395
+ valueType: string
396
+ inputType: select
397
+ enumValues: [coolify, vercel, netlify, custom]
398
+ - slug: targetUrl
399
+ label: API URL
400
+ valueType: string
401
+ inputType: url
402
+ - slug: targetAuthRef
403
+ label: Auth Token Ref
404
+ valueType: string
405
+ inputType: text
406
+ - slug: targetEnvType
407
+ label: Environment
408
+ valueType: string
409
+ inputType: select
410
+ enumValues: [staging, production]
411
+ - slug: targetStatus
412
+ label: Status
413
+ valueType: string
414
+ inputType: select
415
+ enumValues: [active, inactive, error]
416
+ - slug: linkedAppSlug
417
+ label: Linked App Slug
418
+ valueType: string
419
+ inputType: text
420
+
421
+ - slug: devplane_deployment
422
+ displayName: Deployment
423
+ icon: rocket
424
+ color: rose
425
+ description: A deployment event or release
426
+ properties:
427
+ - slug: deployStatus
428
+ label: Status
429
+ valueType: string
430
+ inputType: select
431
+ enumValues: [pending, running, succeeded, failed, rolled_back]
432
+ - slug: version
433
+ label: Version
434
+ valueType: string
435
+ inputType: text
436
+ - slug: commitSha
437
+ label: Commit SHA
438
+ valueType: string
439
+ inputType: text
440
+ - slug: linkedApp
441
+ label: Linked App
442
+ valueType: string
443
+ inputType: text
444
+ - slug: linkedEnvironment
445
+ label: Environment
446
+ valueType: string
447
+ inputType: text
448
+ - slug: deployedBy
449
+ label: Deployed By
450
+ valueType: string
451
+ inputType: text
452
+ - slug: deployedAt
453
+ label: Deployed At
454
+ valueType: date
455
+ inputType: date
456
+ - slug: logsUrl
457
+ label: Logs URL
458
+ valueType: string
459
+ inputType: url
460
+ - slug: recipeRunId
461
+ label: Recipe Run
462
+ valueType: string
463
+ inputType: text
464
+
465
+ - slug: devplane_recipe
466
+ displayName: Recipe
467
+ icon: play-circle
468
+ color: orange
469
+ description: An ordered list of shell commands to run on a remote server
470
+ properties:
471
+ - slug: recipeName
472
+ label: Recipe Name
473
+ valueType: string
474
+ inputType: text
475
+ - slug: recipeDescription
476
+ label: Description
477
+ valueType: string
478
+ inputType: text
479
+ - slug: recipeTemplate
480
+ label: Template
481
+ valueType: string
482
+ inputType: select
483
+ enumValues: [kamal, shell, custom]
484
+ - slug: onFailure
485
+ label: On Failure
486
+ valueType: string
487
+ inputType: select
488
+ enumValues: [stop, continue, rollback]
489
+ - slug: recipeSteps
490
+ label: Recipe Steps
491
+ valueType: string
492
+ inputType: text
493
+ - slug: linkedEnvironmentId
494
+ label: Linked Environment
495
+ valueType: string
496
+ inputType: text
497
+ - slug: linkedAppSlug
498
+ label: Linked App
499
+ valueType: string
500
+ inputType: text
501
+ - slug: rollbackRecipeId
502
+ label: Rollback Recipe
503
+ valueType: string
504
+ inputType: text
505
+
506
+ - slug: devplane_recipe_run
507
+ displayName: Recipe Run
508
+ icon: activity
509
+ color: blue
510
+ description: A single execution of a recipe with per-step status tracking
511
+ properties:
512
+ - slug: recipeId
513
+ label: Recipe
514
+ valueType: string
515
+ inputType: text
516
+ - slug: runStatus
517
+ label: Status
518
+ valueType: string
519
+ inputType: select
520
+ enumValues: [running, success, failed, cancelled]
521
+ - slug: runSteps
522
+ label: Run Steps
523
+ valueType: string
524
+ inputType: text
525
+ - slug: runStartedAt
526
+ label: Started At
527
+ valueType: string
528
+ inputType: text
529
+ - slug: runFinishedAt
530
+ label: Finished At
531
+ valueType: string
532
+ inputType: text
533
+ - slug: runDuration
534
+ label: Duration (ms)
535
+ valueType: number
536
+ inputType: number
537
+ - slug: triggeredBy
538
+ label: Triggered By
539
+ valueType: string
540
+ inputType: select
541
+ enumValues: [manual, automation]
542
+ - slug: linkedApp
543
+ label: Linked App
544
+ valueType: string
545
+ inputType: text
546
+
547
+ - slug: devplane_prompt_snippet
548
+ displayName: Prompt Snippet
549
+ icon: sparkles
550
+ color: amber
551
+ description: A reusable AI prompt template
552
+ properties:
553
+ - slug: snippetTitle
554
+ label: Title
555
+ valueType: string
556
+ inputType: text
557
+ - slug: snippetCategory
558
+ label: Category
559
+ valueType: string
560
+ inputType: select
561
+ enumValues: [deploy, debug, test, audit, review, workflow, custom]
562
+ - slug: snippetDescription
563
+ label: Description
564
+ valueType: string
565
+ inputType: text
566
+ - slug: snippetBody
567
+ label: Prompt Template
568
+ valueType: string
569
+ inputType: text
570
+ - slug: isExecutable
571
+ label: Executable
572
+ valueType: boolean
573
+ inputType: checkbox
574
+ - slug: linkedApp
575
+ label: Linked App
576
+ valueType: string
577
+ inputType: text
578
+
579
+ - slug: devplane_decision_record
580
+ displayName: Decision Record
581
+ icon: book-open
582
+ color: indigo
583
+ description: A technical decision with context, rationale, and alternatives
584
+ properties:
585
+ - slug: decisionContext
586
+ label: Context
587
+ valueType: string
588
+ inputType: text
589
+ - slug: decisionChoice
590
+ label: Decision
591
+ valueType: string
592
+ inputType: text
593
+ - slug: alternatives
594
+ label: Alternatives Considered
595
+ valueType: string
596
+ inputType: text
597
+ - slug: linkedApp
598
+ label: Linked App
599
+ valueType: string
600
+ inputType: text
601
+ - slug: linkedPackages
602
+ label: Linked Packages
603
+ valueType: string
604
+ inputType: text
605
+ - slug: madeBy
606
+ label: Made By
607
+ valueType: string
608
+ inputType: text
609
+ - slug: madeAt
610
+ label: Made At
611
+ valueType: string
612
+ inputType: text
613
+
614
+ - slug: devplane_incident
615
+ displayName: Incident
616
+ icon: alert-triangle
617
+ color: red
618
+ description: A production incident with severity, status, and root cause tracking
619
+ properties:
620
+ - slug: severity
621
+ label: Severity
622
+ valueType: string
623
+ inputType: select
624
+ enumValues: [critical, high, medium, low]
625
+ - slug: incidentStatus
626
+ label: Status
627
+ valueType: string
628
+ inputType: select
629
+ enumValues: [open, investigating, resolved]
630
+ - slug: affectedApps
631
+ label: Affected Apps
632
+ valueType: string
633
+ inputType: text
634
+ - slug: rootCause
635
+ label: Root Cause
636
+ valueType: string
637
+ inputType: text
638
+ - slug: resolvedAt
639
+ label: Resolved At
640
+ valueType: string
641
+ inputType: text
642
+ - slug: incidentDescription
643
+ label: Description
644
+ valueType: string
645
+ inputType: text
646
+ - slug: linkedEnvironment
647
+ label: Linked Environment
648
+ valueType: string
649
+ inputType: text
650
+ - slug: recipeRunId
651
+ label: Recipe Run
652
+ valueType: string
653
+ inputType: text
654
+
655
+ - slug: devplane_cron
656
+ displayName: Cron Job
657
+ icon: timer
658
+ color: cyan
659
+ description: A scheduled task with cron expression and run history
660
+ properties:
661
+ - slug: cronExpression
662
+ label: Cron Expression
663
+ valueType: string
664
+ inputType: text
665
+ - slug: cronStatus
666
+ label: Status
667
+ valueType: string
668
+ inputType: select
669
+ enumValues: [active, paused, error]
670
+ - slug: cronDescription
671
+ label: Description
672
+ valueType: string
673
+ inputType: text
674
+ - slug: linkedAppSlug
675
+ label: Linked App
676
+ valueType: string
677
+ inputType: text
678
+ - slug: lastRunAt
679
+ label: Last Run At
680
+ valueType: string
681
+ inputType: text
682
+ - slug: lastRunStatus
683
+ label: Last Run Status
684
+ valueType: string
685
+ inputType: select
686
+ enumValues: [success, failed]
687
+ - slug: nextRunAt
688
+ label: Next Run At
689
+ valueType: string
690
+ inputType: text
691
+
692
+ - slug: devplane_package_publish
693
+ displayName: Package Publish
694
+ icon: upload-cloud
695
+ color: emerald
696
+ description: A recorded npm publish event with version, changelog, and consumer impact
697
+ properties:
698
+ - slug: publishedPackage
699
+ label: Package
700
+ valueType: string
701
+ inputType: text
702
+ - slug: fromVersion
703
+ label: From Version
704
+ valueType: string
705
+ inputType: text
706
+ - slug: toVersion
707
+ label: To Version
708
+ valueType: string
709
+ inputType: text
710
+ - slug: bumpType
711
+ label: Bump Type
712
+ valueType: string
713
+ inputType: select
714
+ enumValues: [patch, minor, major]
715
+ - slug: changelogEntry
716
+ label: Changelog
717
+ valueType: string
718
+ inputType: text
719
+ - slug: publishStatus
720
+ label: Status
721
+ valueType: string
722
+ inputType: select
723
+ enumValues: [success, failed, dry-run]
724
+ - slug: consumersNotified
725
+ label: Consumers Notified
726
+ valueType: number
727
+ inputType: number
728
+ - slug: triggeredBy
729
+ label: Triggered By
730
+ valueType: string
731
+ inputType: select
732
+ enumValues: [manual, automation]
733
+ - slug: publishedAt
734
+ label: Published At
735
+ valueType: string
736
+ inputType: text
737
+
738
+ - slug: devplane_agent_run
739
+ displayName: Agent Run
740
+ icon: bot
741
+ color: violet
742
+ description: A single pipeline execution of an autonomous agent for a feature
743
+ properties:
744
+ - slug: feature_id
745
+ label: Feature ID
746
+ valueType: string
747
+ inputType: text
748
+ - slug: pipeline_phase
749
+ label: Pipeline Phase
750
+ valueType: string
751
+ inputType: select
752
+ enumValues: [gather, plan, execute, verify, deploy]
753
+ - slug: run_status
754
+ label: Run Status
755
+ valueType: string
756
+ inputType: select
757
+ enumValues: [running, completed, failed, skipped]
758
+ - slug: agent_name
759
+ label: Agent
760
+ valueType: string
761
+ inputType: text
762
+ - slug: started_at
763
+ label: Started At
764
+ valueType: date
765
+ inputType: date
766
+ - slug: ended_at
767
+ label: Ended At
768
+ valueType: date
769
+ inputType: date
770
+ - slug: duration_ms
771
+ label: Duration (ms)
772
+ valueType: number
773
+ inputType: number
774
+ - slug: output_summary
775
+ label: Output Summary
776
+ valueType: string
777
+ inputType: textarea
778
+ - slug: error_message
779
+ label: Error
780
+ valueType: string
781
+ inputType: text
782
+ - slug: context_used
783
+ label: Context Used
784
+ valueType: string
785
+ inputType: textarea
786
+
787
+ - slug: devplane_best_practice
788
+ displayName: Best Practice
789
+ icon: shield-check
790
+ color: emerald
791
+ description: A codified engineering best practice for a tech stack or workflow
792
+ properties:
793
+ - slug: category
794
+ label: Category
795
+ valueType: string
796
+ inputType: select
797
+ enumValues: [architecture, testing, security, performance, style, tooling, workflow]
798
+ - slug: tech_stack
799
+ label: Tech Stack
800
+ valueType: string
801
+ inputType: text
802
+ - slug: title
803
+ label: Title
804
+ valueType: string
805
+ inputType: text
806
+ - slug: body
807
+ label: Content
808
+ valueType: string
809
+ inputType: textarea
810
+ - slug: source
811
+ label: Source
812
+ valueType: string
813
+ inputType: text
814
+ - slug: applies_to_apps
815
+ label: Applies To Apps
816
+ valueType: string
817
+ inputType: text
818
+ - slug: is_enforced
819
+ label: Enforced by CI
820
+ valueType: boolean
821
+ inputType: checkbox
822
+ constraints: { defaultValue: false }
823
+
824
+ - slug: devplane_codebase_map
825
+ displayName: Codebase Map
826
+ icon: folder-tree
827
+ color: cyan
828
+ description: A structural map of a module or directory within an app
829
+ properties:
830
+ - slug: app_id
831
+ label: App
832
+ valueType: string
833
+ inputType: text
834
+ - slug: module_path
835
+ label: Path
836
+ valueType: string
837
+ inputType: text
838
+ - slug: module_name
839
+ label: Module Name
840
+ valueType: string
841
+ inputType: text
842
+ - slug: description
843
+ label: Description
844
+ valueType: string
845
+ inputType: textarea
846
+ - slug: owner
847
+ label: Owner
848
+ valueType: string
849
+ inputType: text
850
+ - slug: tech_tags
851
+ label: Tech Tags
852
+ valueType: string
853
+ inputType: text
854
+ - slug: key_files
855
+ label: Key Files
856
+ valueType: string
857
+ inputType: textarea
858
+ - slug: conventions
859
+ label: Conventions
860
+ valueType: string
861
+ inputType: textarea
862
+ - slug: last_updated
863
+ label: Last Updated
864
+ valueType: date
865
+ inputType: date
866
+
867
+ - slug: project
868
+ displayName: Project
869
+ icon: folder
870
+ color: "#2E6DA4"
871
+ description: A bounded body of work delegated to one or more agents
872
+ properties:
873
+ - slug: project-status
874
+ label: Status
875
+ valueType: string
876
+ inputType: select
877
+ enumValues: [Backlog, Queued, In Progress, Blocked, Completed, Cancelled]
878
+ - slug: project-priority
879
+ label: Priority
880
+ valueType: string
881
+ inputType: select
882
+ enumValues: [Critical, High, Medium, Low]
883
+ - slug: project-owner
884
+ label: Human Owner
885
+ valueType: entity_id
886
+ targetProfileSlug: person
887
+ - slug: project-start
888
+ label: Start Date
889
+ valueType: date
890
+ - slug: project-deadline
891
+ label: Deadline
892
+ valueType: date
893
+ - slug: project-health
894
+ label: Health
895
+ valueType: string
896
+ inputType: select
897
+ enumValues: [Green, Yellow, Red]
898
+ - slug: project-type
899
+ label: Type
900
+ valueType: string
901
+ inputType: select
902
+ enumValues: [Development, Research, Content, Automation, DevOps, Data, Outreach, Monitoring]
903
+ - slug: project-goal
904
+ label: Goal
905
+ valueType: string
906
+ - slug: project-outcome
907
+ label: Expected Outcome
908
+ valueType: string
909
+
910
+ - slug: task
911
+ displayName: Task
912
+ icon: check-square
913
+ color: "#1B6E45"
914
+ description: An atomic work item assigned to a coder agent or background runner
915
+ properties:
916
+ - slug: task-status
917
+ label: Status
918
+ valueType: string
919
+ inputType: select
920
+ enumValues: [Backlog, Queued, Running, Review, Done, Failed, Cancelled]
921
+ constraints: { defaultValue: Queued }
922
+ - slug: task-priority
923
+ label: Priority
924
+ valueType: string
925
+ inputType: select
926
+ enumValues: [Critical, High, Medium, Low]
927
+ constraints: { defaultValue: Medium }
928
+ - slug: task-project
929
+ label: Project
930
+ valueType: entity_id
931
+ targetProfileSlug: project
932
+ - slug: task-type
933
+ label: Type
934
+ valueType: string
935
+ inputType: select
936
+ enumValues: [Code, Research, Content, Ops, Data, Outreach, Review, Monitor, Custom]
937
+ - slug: task-due-date
938
+ label: Due Date
939
+ valueType: date
940
+ - slug: task-effort-hours
941
+ label: Effort Estimate (hrs)
942
+ valueType: number
943
+ - slug: task-token-estimate
944
+ label: Token Estimate (K)
945
+ valueType: number
946
+ - slug: task-actual-tokens
947
+ label: Actual Tokens Used (K)
948
+ valueType: number
949
+ - slug: task-blocked-by
950
+ label: Blocked By
951
+ valueType: string
952
+ - slug: task-session-key
953
+ label: Session Key
954
+ valueType: string
955
+
956
+ - slug: skill
957
+ displayName: Skill
958
+ icon: zap
959
+ color: "#7C3AED"
960
+ description: An installed agent capability — a ClawHub skill, custom script, or API integration
961
+ properties:
962
+ - slug: skill-trust
963
+ label: Trust Level
964
+ valueType: string
965
+ inputType: select
966
+ enumValues: [Trusted, Review, Untrusted, Blocked]
967
+ constraints: { defaultValue: Review }
968
+ - slug: skill-category
969
+ label: Category
970
+ valueType: string
971
+ inputType: select
972
+ enumValues: [Productivity, Development, Communication, Data, Security, Storage, Browser, Voice, IoT, Custom]
973
+ - slug: skill-source-url
974
+ label: Source URL
975
+ valueType: string
976
+ - slug: skill-version
977
+ label: Version
978
+ valueType: string
979
+ - slug: skill-install-date
980
+ label: Install Date
981
+ valueType: date
982
+ - slug: skill-last-audit
983
+ label: Last Audit Date
984
+ valueType: date
985
+ - slug: skill-virustotal
986
+ label: VirusTotal Status
987
+ valueType: string
988
+ inputType: select
989
+ enumValues: [Clean, Flagged, Not Scanned, Pending]
990
+ - slug: skill-maintainer
991
+ label: Maintainer
992
+ valueType: string
993
+ - slug: skill-requires-api
994
+ label: Requires API Key
995
+ valueType: boolean
996
+ - slug: skill-notes
997
+ label: Security Notes
998
+ valueType: string
999
+
1000
+ - slug: provider
1001
+ displayName: Provider
1002
+ icon: database
1003
+ color: "#B5451B"
1004
+ description: An LLM or API provider — tracks cost, key health, and agent usage
1005
+ properties:
1006
+ - slug: provider-type
1007
+ label: Type
1008
+ valueType: string
1009
+ inputType: select
1010
+ enumValues: [LLM Cloud, LLM Local, API Gateway, Vector DB, Storage, Custom]
1011
+ - slug: provider-key-health
1012
+ label: Key Health
1013
+ valueType: string
1014
+ inputType: select
1015
+ enumValues: [Valid, Expiring, Expired, No Key (Local)]
1016
+ constraints: { defaultValue: Valid }
1017
+ - slug: provider-model
1018
+ label: Model / Endpoint
1019
+ valueType: string
1020
+ - slug: provider-cost-input
1021
+ label: Cost per 1K Input Tokens ($)
1022
+ valueType: number
1023
+ - slug: provider-cost-output
1024
+ label: Cost per 1K Output Tokens ($)
1025
+ valueType: number
1026
+ - slug: provider-budget-day
1027
+ label: Daily Budget Ceiling ($)
1028
+ valueType: number
1029
+ - slug: provider-spend-week
1030
+ label: Actual Spend This Week ($)
1031
+ valueType: number
1032
+ - slug: provider-base-url
1033
+ label: Base URL / Endpoint
1034
+ valueType: string
1035
+ - slug: provider-notes
1036
+ label: Notes
1037
+ valueType: string
1038
+
1039
+ - slug: devplane_system_component
1040
+ displayName: System Component
1041
+ icon: cpu
1042
+ color: violet
1043
+ description: A building block of your architecture — frontend, backend, database, service, or external dependency
1044
+ properties:
1045
+ - slug: componentType
1046
+ label: Type
1047
+ valueType: string
1048
+ inputType: select
1049
+ enumValues: [frontend, backend, database, cache, queue, external-api, cdn, storage, auth, monitoring, other]
1050
+ - slug: componentStatus
1051
+ label: Status
1052
+ valueType: string
1053
+ inputType: select
1054
+ enumValues: [active, planned, deprecated, archived]
1055
+ constraints: { defaultValue: active }
1056
+ - slug: techStack
1057
+ label: Tech Stack
1058
+ valueType: string
1059
+ inputType: text
1060
+ - slug: repoUrl
1061
+ label: Repository URL
1062
+ valueType: string
1063
+ inputType: url
1064
+ - slug: deployUrl
1065
+ label: Deploy / Dashboard URL
1066
+ valueType: string
1067
+ inputType: url
1068
+ - slug: linkedAppId
1069
+ label: Linked App ID
1070
+ valueType: string
1071
+ inputType: text
1072
+ - slug: linkedPackageIds
1073
+ label: Linked Package IDs
1074
+ valueType: string
1075
+ inputType: text
1076
+ - slug: healthScore
1077
+ label: Health Score
1078
+ valueType: number
1079
+ inputType: number
1080
+ - slug: description
1081
+ label: Description
1082
+ valueType: string
1083
+ inputType: textarea
1084
+ - slug: owner
1085
+ label: Owner
1086
+ valueType: string
1087
+ inputType: text
1088
+
1089
+ - slug: devplane_workflow
1090
+ displayName: Workflow
1091
+ icon: workflow
1092
+ color: blue
1093
+ description: A user flow or business process — a sequence of steps through system components
1094
+ properties:
1095
+ - slug: workflowStatus
1096
+ label: Status
1097
+ valueType: string
1098
+ inputType: select
1099
+ enumValues: [documented, in-progress, needs-review, complete]
1100
+ constraints: { defaultValue: documented }
1101
+ - slug: workflowCategory
1102
+ label: Category
1103
+ valueType: string
1104
+ inputType: select
1105
+ enumValues: [user-flow, data-pipeline, deploy-pipeline, auth-flow, payment-flow, notification-flow, other]
1106
+ - slug: trigger
1107
+ label: Trigger
1108
+ valueType: string
1109
+ inputType: text
1110
+ - slug: expectedOutcome
1111
+ label: Expected Outcome
1112
+ valueType: string
1113
+ inputType: text
1114
+ - slug: linkedAppId
1115
+ label: Linked App ID
1116
+ valueType: string
1117
+ inputType: text
1118
+ - slug: linkedComponentIds
1119
+ label: Linked Component IDs
1120
+ valueType: string
1121
+ inputType: text
1122
+ - slug: mermaidDiagram
1123
+ label: Mermaid Diagram
1124
+ valueType: string
1125
+ inputType: textarea
1126
+ - slug: description
1127
+ label: Description
1128
+ valueType: string
1129
+ inputType: textarea
1130
+
1131
+ - slug: devplane_capability
1132
+ displayName: Capability
1133
+ icon: lightbulb
1134
+ color: violet
1135
+ description: A system capability — what the system can do (rendering, data, auth, AI, infra, UI, workflow)
1136
+ properties:
1137
+ - slug: capabilityType
1138
+ label: Type
1139
+ valueType: string
1140
+ inputType: select
1141
+ enumValues: [rendering, data, auth, ai, infra, ui, workflow, integration, external]
1142
+ - slug: maturity
1143
+ label: Maturity
1144
+ valueType: string
1145
+ inputType: select
1146
+ enumValues: [planned, in-progress, stable, deprecated]
1147
+ constraints: { defaultValue: in-progress }
1148
+ - slug: description
1149
+ label: Description
1150
+ valueType: string
1151
+ inputType: textarea
1152
+ - slug: owner
1153
+ label: Owner
1154
+ valueType: string
1155
+ inputType: text
1156
+ - slug: codePath
1157
+ label: Code Path
1158
+ valueType: string
1159
+ inputType: text
1160
+ - slug: linkedAppIds
1161
+ label: Linked App IDs
1162
+ valueType: string
1163
+ inputType: text
1164
+ - slug: linkedPackageIds
1165
+ label: Linked Package IDs
1166
+ valueType: string
1167
+ inputType: text
1168
+ - slug: linkedComponentIds
1169
+ label: Linked Component IDs
1170
+ valueType: string
1171
+ inputType: text
1172
+
1173
+ views:
1174
+ - name: Apps
1175
+ type: table
1176
+ scopeProfileSlug: devplane_app
1177
+ config:
1178
+ columns: [title, appStatus, techStack, port, deployUrl]
1179
+ - name: Task Board
1180
+ type: kanban
1181
+ scopeProfileSlug: task
1182
+ groupBy: task-status
1183
+ defaultView: true
1184
+ description: "All delegated tasks by status: Backlog → Queued → Running → Review → Done."
1185
+ - name: Deployments
1186
+ type: calendar
1187
+ scopeProfileSlug: devplane_deployment
1188
+ startField: deployedAt
1189
+ config:
1190
+ dateField: deployedAt
1191
+ colorBy: deployStatus
1192
+ description: "Deployment events on a calendar so release cadence is visible at a glance."
1193
+ - name: Packages
1194
+ type: table
1195
+ scopeProfileSlug: devplane_package
1196
+ config:
1197
+ columns: [packageName, packageVersion, healthGrade, staleStatus]
1198
+ - name: Incidents
1199
+ type: table
1200
+ scopeProfileSlug: devplane_incident
1201
+ config:
1202
+ columns: [title, severity, incidentStatus, affectedApps, resolvedAt]
1203
+ - name: Projects
1204
+ type: kanban
1205
+ scopeProfileSlug: project
1206
+ groupBy: project-status
1207
+ description: Delegated projects by status.
1208
+ # ── Architecture graph (ReactFlow) ───────────────────────────────────────
1209
+ # These views are MULTI-PROFILE on purpose: a flow that only loaded one
1210
+ # profile would have nodes but no edges (its relations point at OTHER types).
1211
+ # Scoping across the connected types loads them all as nodes so the typed
1212
+ # relations between them render as edges. Adapter settings live under
1213
+ # config.render (a stored view's config is { render: {...} }); the FlowAdapter
1214
+ # derives nodes from the loaded entities + edges from the relations table.
1215
+ - name: Architecture Graph
1216
+ type: flow
1217
+ scopeProfileSlugs: [devplane_workflow, devplane_system_component, devplane_capability]
1218
+ config:
1219
+ render:
1220
+ variant: architecture
1221
+ defaultView: false
1222
+ description: The whole project as a living graph — flows, the components they traverse, and the capabilities they exercise.
1223
+ - name: Workflows
1224
+ type: flow
1225
+ scopeProfileSlugs: [devplane_workflow, devplane_system_component]
1226
+ config:
1227
+ render:
1228
+ variant: workflow
1229
+ edgeRelationType: traverses
1230
+ description: User flows and pipelines and the components each one traverses.
1231
+ - name: Capability Map
1232
+ type: flow
1233
+ scopeProfileSlugs: [devplane_capability, devplane_system_component]
1234
+ config:
1235
+ render:
1236
+ variant: capability
1237
+ edgeRelationType: provided_by
1238
+ description: What the system can do, mapped to the components that provide it.
1239
+
1240
+ # Schema-level relation types — materialized as relation defs + profile relations
1241
+ # by createFromDefinition. These declare which entity types CAN connect; the
1242
+ # flow views above render the actual edges from the relations table.
1243
+ entityLinks:
1244
+ - sourceProfileSlug: devplane_workflow
1245
+ targetProfileSlug: devplane_system_component
1246
+ type: traverses
1247
+ label: Traverses
1248
+ - sourceProfileSlug: devplane_workflow
1249
+ targetProfileSlug: devplane_capability
1250
+ type: exercises
1251
+ label: Exercises
1252
+ - sourceProfileSlug: devplane_capability
1253
+ targetProfileSlug: devplane_system_component
1254
+ type: provided_by
1255
+ label: Provided by
1256
+ - sourceProfileSlug: devplane_system_component
1257
+ targetProfileSlug: devplane_system_component
1258
+ type: depends_on
1259
+ label: Depends on
1260
+
1261
+ # App reference
1262
+ app:
1263
+ kind: native
1264
+ appId: devplane
1265
+ rendererType: native
1266
+ title: DevPlane
1267
+
1268
+ layout:
1269
+ defaultApp: devplane
1270
+ defaultView: Task Board
1271
+ sidebarItems:
1272
+ - kind: app
1273
+ appId: devplane
1274
+ label: DevPlane
1275
+ icon: rocket
1276
+ surface:
1277
+ kind: app
1278
+ appId: devplane
1279
+ rendererType: native
1280
+ placement: main
1281
+ displayMode: full
1282
+ title: DevPlane
1283
+ - kind: view
1284
+ viewName: Apps
1285
+ label: Apps
1286
+ icon: layout-dashboard
1287
+ - kind: view
1288
+ viewName: Task Board
1289
+ label: Tasks
1290
+ icon: check-square
1291
+ - kind: view
1292
+ viewName: Deployments
1293
+ label: Deployments
1294
+ icon: rocket
1295
+ - kind: view
1296
+ viewName: Packages
1297
+ label: Packages
1298
+ icon: package
1299
+ - kind: view
1300
+ viewName: Incidents
1301
+ label: Incidents
1302
+ icon: alert-triangle
1303
+
1304
+ bento:
1305
+ viewName: Builder Home
1306
+ blocks:
1307
+ - kind: widget
1308
+ widgetType: section-header
1309
+ pos: { x: 0, y: 0, w: 12, h: 2 }
1310
+ config:
1311
+ title: Builder
1312
+ subtitle: Apps, packages, deployments, and delegated tasks in one lens.
1313
+ color: "#7C3AED"
1314
+ - kind: widget
1315
+ widgetType: entity-count
1316
+ pos: { x: 0, y: 2, w: 3, h: 2 }
1317
+ config:
1318
+ profileSlug: devplane_app
1319
+ label: Apps
1320
+ icon: layout-dashboard
1321
+ - kind: widget
1322
+ widgetType: entity-count
1323
+ pos: { x: 3, y: 2, w: 3, h: 2 }
1324
+ config:
1325
+ profileSlug: task
1326
+ label: Tasks
1327
+ icon: check-square
1328
+ - kind: widget
1329
+ widgetType: entity-count
1330
+ pos: { x: 6, y: 2, w: 3, h: 2 }
1331
+ config:
1332
+ profileSlug: devplane_deployment
1333
+ label: Deployments
1334
+ icon: rocket
1335
+ - kind: view
1336
+ viewName: Task Board
1337
+ pos: { x: 0, y: 4, w: 12, h: 6 }
1338
+
1339
+ seedEntities:
1340
+ - profileSlug: deployment_target
1341
+ title: Coolify Production (CT 103)
1342
+ properties:
1343
+ targetType: coolify
1344
+ targetUrl: "http://10.10.0.20:8000"
1345
+ targetAuthRef: COOLIFY_PROD_TOKEN
1346
+ targetEnvType: production
1347
+ targetStatus: active
1348
+ - profileSlug: deployment_target
1349
+ title: Coolify Staging (CT 104)
1350
+ properties:
1351
+ targetType: coolify
1352
+ targetUrl: "http://10.10.0.20:8000"
1353
+ targetAuthRef: COOLIFY_STAGING_TOKEN
1354
+ targetEnvType: staging
1355
+ targetStatus: active