@compilr-dev/sdk 0.5.1 → 0.5.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.
@@ -117,6 +117,7 @@ export class SQLiteDocumentRepository {
117
117
  notes: 0,
118
118
  plan: 0,
119
119
  'app-model': 0,
120
+ 'research-model': 0,
120
121
  };
121
122
  for (const row of results) {
122
123
  counts[row.doc_type] = row.count;
@@ -15,6 +15,7 @@ const DOC_TYPE_ENUM = [
15
15
  'notes',
16
16
  'plan',
17
17
  'app-model',
18
+ 'research-model',
18
19
  ];
19
20
  // eslint-disable-next-line @typescript-eslint/explicit-function-return-type
20
21
  export function createDocumentTools(config) {
@@ -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';
22
+ export type DocumentType = 'prd' | 'architecture' | 'design' | 'notes' | 'plan' | 'app-model' | 'research-model';
23
23
  export type PlanStatus = 'draft' | 'approved' | 'in_progress' | 'completed' | 'abandoned';
24
24
  export interface Project {
25
25
  id: number;
@@ -142,6 +142,7 @@ export const researchConfig = {
142
142
  { role: 'editor', label: 'Editor', description: 'Style, clarity, grammar, consistency' },
143
143
  ],
144
144
  documentTemplates: [
145
+ { type: 'research-model', label: 'Research Model', description: 'Paper structure, claims, and sources' },
145
146
  { type: 'outline', label: 'Outline', description: 'Paper structure and sections' },
146
147
  {
147
148
  type: 'literature-review',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compilr-dev/sdk",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Universal agent runtime for building AI-powered applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",