@compilr-dev/sdk 0.7.0 → 0.7.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.
package/dist/platform/types.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export type WorkItemType = 'feature' | 'bug' | 'tech-debt' | 'chore';
|
|
|
19
19
|
export type WorkItemStatus = 'backlog' | 'in_progress' | 'completed' | 'skipped';
|
|
20
20
|
export type WorkItemPriority = 'critical' | 'high' | 'medium' | 'low';
|
|
21
21
|
export type GuidedStep = 'plan' | 'implement' | 'test' | 'commit' | 'review';
|
|
22
|
-
export type DocumentType = 'prd' | 'architecture' | 'design' | 'notes' | 'plan' | 'app-model' | 'research-model';
|
|
22
|
+
export type DocumentType = 'prd' | 'architecture' | 'design' | 'notes' | 'plan' | 'app-model' | 'research-model' | 'business-model';
|
|
23
23
|
export type PlanStatus = 'draft' | 'approved' | 'in_progress' | 'completed' | 'abandoned';
|
|
24
24
|
export interface Project {
|
|
25
25
|
id: number;
|
|
@@ -340,13 +340,13 @@ export const businessPlanConfig = {
|
|
|
340
340
|
{ role: 'writer', label: 'Writer', description: 'Clear, persuasive business writing' },
|
|
341
341
|
],
|
|
342
342
|
documentTemplates: [
|
|
343
|
+
{ type: 'business-model', label: 'Business Model', description: 'Structured business model (identity, market, competitors, financials)' },
|
|
343
344
|
{ type: 'executive-summary', label: 'Executive Summary', description: 'Business overview' },
|
|
344
345
|
{
|
|
345
346
|
type: 'market-analysis',
|
|
346
347
|
label: 'Market Analysis',
|
|
347
348
|
description: 'Market size, trends, competition',
|
|
348
349
|
},
|
|
349
|
-
{ type: 'business-model', label: 'Business Model', description: 'Revenue, costs, operations' },
|
|
350
350
|
{ type: 'financial-model', label: 'Financial Model', description: 'Projections and forecasts' },
|
|
351
351
|
{ type: 'pitch', label: 'Pitch Narrative', description: 'Investor pitch content' },
|
|
352
352
|
{ type: 'session-notes', label: 'Session Notes', description: 'Summary of work done' },
|
package/dist/team/types.js
CHANGED
|
@@ -28,7 +28,7 @@ export const PREDEFINED_ROLE_IDS = [
|
|
|
28
28
|
* Used in the team roster to help agents understand each other's strengths
|
|
29
29
|
*/
|
|
30
30
|
export const ROLE_EXPERTISE = {
|
|
31
|
-
default: ['
|
|
31
|
+
default: ['coordination', 'problem solving', 'planning', 'task management'],
|
|
32
32
|
pm: ['planning', 'task tracking', 'coordination', 'timeline estimation', 'status updates'],
|
|
33
33
|
arch: [
|
|
34
34
|
'system design',
|