@compilr-dev/sdk 0.7.15 → 0.7.16

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.
@@ -37,7 +37,7 @@ This project uses compilr's database for tracking. Use these tools to access pro
37
37
  | Data Type | Read Tool | Write Tool |
38
38
  |-----------|-----------|------------|
39
39
  | Work Items (Backlog) | \`workitem_query\` | \`workitem_add\`, \`workitem_update\` |
40
- | Project Documents | \`project_document_get\`, \`project_document_list\` | \`project_document_add\` |
40
+ | Project Documents | \`project_document_get\`, \`project_document_list\` | \`project_document_add\`, \`project_document_patch\` |
41
41
  | Anchors (Context) | \`anchor_list\` | \`anchor_add\`, \`anchor_remove\` |
42
42
 
43
43
  **Important:** Use database tools for project metadata. Explore the existing codebase for implementation details.
@@ -34,7 +34,7 @@ This project uses compilr's database for tracking. Use these tools to access pro
34
34
  | Data Type | Read Tool | Write Tool |
35
35
  |-----------|-----------|------------|
36
36
  | Work Items (Backlog) | \`workitem_query\` | \`workitem_add\`, \`workitem_update\` |
37
- | Project Documents | \`project_document_get\`, \`project_document_list\` | \`project_document_add\` |
37
+ | Project Documents | \`project_document_get\`, \`project_document_list\` | \`project_document_add\`, \`project_document_patch\` |
38
38
  | Anchors (Context) | \`anchor_list\` | \`anchor_add\`, \`anchor_remove\` |
39
39
 
40
40
  **Important:** Always use database tools instead of exploring the filesystem for project data.
@@ -112,7 +112,7 @@ You are the **Project Manager (PM)** in this multi-agent development team. You s
112
112
  **Specialized tools** (call via \`use_tool\`):
113
113
  - \`workitem_add\`, \`workitem_update\`, \`workitem_query\` - Manage work items
114
114
  - \`workitem_claim\`, \`workitem_handoff\` - Assign and reassign tasks between agents
115
- - \`project_document_add\`, \`project_document_get\` - Save/retrieve project docs (PRD, architecture, design, plan, notes)
115
+ - \`project_document_add\`, \`project_document_get\`, \`project_document_patch\` - Save/retrieve/update project docs. Use patch (append/prepend/replace_section) for large docs to avoid reading the full content
116
116
  - \`artifact_save\`, \`artifact_get\` - Store team decisions, meeting notes, reviews
117
117
 
118
118
  **IMPORTANT:** Specialized tools must be called via \`use_tool\`. Example: \`use_tool("project_document_add", {"doc_type": "design", "title": "...", "content": "..."})\`.
@@ -511,7 +511,7 @@ You are the **Technical Writer** in this multi-agent development team. You creat
511
511
  - \`handoff\` - Hand off to another specialist
512
512
 
513
513
  **Specialized tools** (call via \`use_tool\`):
514
- - \`project_document_add\`, \`project_document_get\` - Save/retrieve project docs (PRD, architecture, design, plan, notes)
514
+ - \`project_document_add\`, \`project_document_get\`, \`project_document_patch\` - Save/retrieve/update project docs. Use patch (append/prepend/replace_section) for large docs to avoid reading the full content
515
515
  - \`artifact_save\` - Store drafts and notes for team reference
516
516
 
517
517
  **IMPORTANT:** Specialized tools must be called via \`use_tool\`. Example: \`use_tool("project_document_add", {"doc_type": "notes", "title": "...", "content": "..."})\`.
@@ -597,7 +597,7 @@ You are the **Business Analyst** in this multi-agent development team. You trans
597
597
 
598
598
  **Specialized tools** (call via \`use_tool\`):
599
599
  - \`workitem_add\`, \`workitem_update\` - Create and refine requirements
600
- - \`project_document_add\`, \`project_document_get\` - Save/retrieve project docs (PRD, architecture, design, plan, notes)
600
+ - \`project_document_add\`, \`project_document_get\`, \`project_document_patch\` - Save/retrieve/update project docs. Use patch (append/prepend/replace_section) for large docs to avoid reading the full content
601
601
  - \`artifact_save\` - Store analysis notes, diagrams for team reference
602
602
 
603
603
  **IMPORTANT:** Specialized tools must be called via \`use_tool\`. Example: \`use_tool("project_document_add", {"doc_type": "prd", "title": "...", "content": "..."})\`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compilr-dev/sdk",
3
- "version": "0.7.15",
3
+ "version": "0.7.16",
4
4
  "description": "Universal agent runtime for building AI-powered applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",