@compilr-dev/sdk 0.10.3 → 0.10.5

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/agent.js CHANGED
@@ -454,6 +454,12 @@ class CompilrAgentImpl {
454
454
  getUsage() {
455
455
  return { ...this.totalUsage };
456
456
  }
457
+ getModel() {
458
+ return this.agent.getModel();
459
+ }
460
+ setModel(modelId) {
461
+ this.agent.setModel(modelId);
462
+ }
457
463
  unwrap() {
458
464
  return this.agent;
459
465
  }
package/dist/config.d.ts CHANGED
@@ -316,6 +316,10 @@ export interface CompilrAgent {
316
316
  clearHistory(): this;
317
317
  /** Get token usage info */
318
318
  getUsage(): UsageInfo;
319
+ /** Get the current model ID */
320
+ getModel(): string;
321
+ /** Change the model for subsequent LLM calls (same provider only) */
322
+ setModel(modelId: string): void;
319
323
  /** Get the underlying Agent instance */
320
324
  unwrap(): unknown;
321
325
  /** Abort the current run */
@@ -129,6 +129,47 @@ Research projects have: /outline, /literature-review, /methodology, /abstract.
129
129
  Business projects have: /business-vision, /market-analysis, /financial-model, /pitch.
130
130
 
131
131
  Skills can be combined with your own instructions: type /design then add context.`,
132
+ },
133
+ {
134
+ id: 'custom-skills',
135
+ title: 'Custom Skills — Create Your Own Slash Commands',
136
+ keywords: [
137
+ 'custom skill',
138
+ 'user skill',
139
+ 'project skill',
140
+ '/skill',
141
+ 'SKILL.md',
142
+ 'fork',
143
+ 'bind',
144
+ 'slash command',
145
+ 'create skill',
146
+ ],
147
+ content: `You can create custom skills that become slash commands (e.g., /my-template).
148
+
149
+ **What is a custom skill?**
150
+ A folder with a SKILL.md file containing YAML frontmatter (name, description) and a markdown body (the prompt the agent receives). Follows the Anthropic Agent Skills format.
151
+
152
+ **Two scopes:**
153
+ - **User scope** (~/.compilr-dev/skills/) — personal, works across all projects
154
+ - **Project scope** (<project>/.compilr/skills/) — shared via version control
155
+
156
+ **CLI:** Use the /skill overlay to create, edit, fork, bind, enable/disable, delete, and rename skills. Press n to create, e to edit (fullscreen editor), f to fork an SDK skill, b to manage bindings.
157
+
158
+ **Desktop:** The Agents panel has a Skills section showing custom skills. Click the maximize button to open the SkillsView tab with full management (create, fork, bind/unbind, enable/disable, delete). Click a skill name to view/edit in the code editor.
159
+
160
+ **Forking SDK skills:**
161
+ You cannot override built-in skills directly. Instead, fork them: this creates a copy with your changes. Then bind a slash command to your fork (e.g., /design → design-acme). The capability bundle still loads based on the command name.
162
+
163
+ **Bindings:**
164
+ Bindings remap slash commands to custom skills. Example: bind /design to your forked design-acme skill. When you type /design, it uses your custom prompt instead of the SDK version. Use the Bindings tab/section to manage them.
165
+
166
+ **Validation:**
167
+ Skills with issues (short description, empty body, name mismatch) show a ⚠ warning. Fix them in the editor — validation runs automatically on save.
168
+
169
+ **Custom skills appear in:**
170
+ - Slash command autocomplete (/ in chat)
171
+ - Help menu (/help in CLI)
172
+ - Slash command picker (/ button in Desktop)`,
132
173
  },
133
174
  // ── Models & Providers ──────────────────────────────────────────────────
134
175
  {
package/dist/index.d.ts CHANGED
@@ -69,7 +69,8 @@ export type { ProjectAnchorStoreConfig, ImageToolsConfig, ImageResizer } from '.
69
69
  export { STEP_ORDER, GUIDED_STEP_CRITERIA, getNextStep, isValidTransition, getStepCriteria, formatStepDisplay, getStepNumber, } from './platform/index.js';
70
70
  export type { CustomSkill, CompilrSkillExtension, ForkedFromMarker, SkillEligibilityContext, SkillCollision, SkillDiffLine, SkillValidationIssue, ScopeConfig, SkillResolution, } from './skills/index.js';
71
71
  export { RESERVED_SKILL_NAMES, isReservedSkillName, parseSkillMarkdown, loadSkillsFromDir, resolveLayeredSkills, resolveSkillsForAgent, detectCollisions, formatCollisionWarnings, diffForkVsUpstream, buildForkContent, buildNewSkillContent, validateSkill as validateSkillQuality, getSkillsDir, getSkillFolder, getSkillFile, ensureSkillsDir, isValidSkillName, getScopeConfigPath, readSkillScopeConfig, readSkillScopeConfigSync, writeSkillScopeConfig, getSkillBindings, resolveSkillBinding, } from './skills/index.js';
72
- export type { SkillScope } from './skills/index.js';
72
+ export type { SkillScope, SkillPromptResolution, AvailableSkillEntry, SkillSources, } from './skills/index.js';
73
+ export { resolveSkillPrompt, getAllAvailableSkills } from './skills/index.js';
73
74
  export { platformSkills, designSkill, sketchSkill, prdSkill, refineSkill, refineItemSkill, architectureSkill, sessionNotesSkill, buildSkill, scaffoldSkill, outlineSkill, literatureReviewSkill, draftSectionSkill, peerReviewSkill, researchScaffoldSkill, businessVisionSkill, marketAnalysisSkill, competitorAnalysisSkill, financialModelSkill, pitchOutlineSkill, businessReviewSkill, brandSetupSkill, contentStrategySkill, contentCalendarSkill, createContentSkill, contentReviewSkill, curriculumDesignSkill, lessonPlanSkill, assessmentDesignSkill, courseReviewSkill, bookOutlineSkill, characterDesignSkill, plotThreadsSkill, sceneBreakdownSkill, bookReviewSkill, } from './skills/index.js';
74
75
  export { ACTION_REGISTRY, getActionsForContext, getActionById, resolveActionPrompt, buildContextSummary, getSuggestedRole, } from './actions/index.js';
75
76
  export type { ActionContext, ActionDefinition } from './actions/index.js';
package/dist/index.js CHANGED
@@ -153,6 +153,7 @@ export { createPlatformTools, createProjectTools, createWorkItemTools, createDoc
153
153
  // =============================================================================
154
154
  export { STEP_ORDER, GUIDED_STEP_CRITERIA, getNextStep, isValidTransition, getStepCriteria, formatStepDisplay, getStepNumber, } from './platform/index.js';
155
155
  export { RESERVED_SKILL_NAMES, isReservedSkillName, parseSkillMarkdown, loadSkillsFromDir, resolveLayeredSkills, resolveSkillsForAgent, detectCollisions, formatCollisionWarnings, diffForkVsUpstream, buildForkContent, buildNewSkillContent, validateSkill as validateSkillQuality, getSkillsDir, getSkillFolder, getSkillFile, ensureSkillsDir, isValidSkillName, getScopeConfigPath, readSkillScopeConfig, readSkillScopeConfigSync, writeSkillScopeConfig, getSkillBindings, resolveSkillBinding, } from './skills/index.js';
156
+ export { resolveSkillPrompt, getAllAvailableSkills } from './skills/index.js';
156
157
  export { platformSkills, designSkill, sketchSkill, prdSkill, refineSkill, refineItemSkill, architectureSkill, sessionNotesSkill, buildSkill, scaffoldSkill, outlineSkill, literatureReviewSkill, draftSectionSkill, peerReviewSkill, researchScaffoldSkill, businessVisionSkill, marketAnalysisSkill, competitorAnalysisSkill, financialModelSkill, pitchOutlineSkill, businessReviewSkill, brandSetupSkill, contentStrategySkill, contentCalendarSkill, createContentSkill, contentReviewSkill, curriculumDesignSkill, lessonPlanSkill, assessmentDesignSkill, courseReviewSkill, bookOutlineSkill, characterDesignSkill, plotThreadsSkill, sceneBreakdownSkill, bookReviewSkill, } from './skills/index.js';
157
158
  // =============================================================================
158
159
  // Contextual Actions (skill invocations with context)
@@ -10,4 +10,6 @@ export type { SkillCollision, SkillDiffLine, SkillValidationIssue, ScopeConfig,
10
10
  export { detectCollisions, formatCollisionWarnings, diffForkVsUpstream, buildForkContent, buildNewSkillContent, validateSkill, } from './operations.js';
11
11
  export type { SkillScope } from './paths.js';
12
12
  export { getSkillsDir, getSkillFolder, getSkillFile, ensureSkillsDir, isValidSkillName, getScopeConfigPath, readScopeConfig as readSkillScopeConfig, readScopeConfigSync as readSkillScopeConfigSync, writeScopeConfig as writeSkillScopeConfig, getAllBindings as getSkillBindings, resolveBinding as resolveSkillBinding, } from './paths.js';
13
+ export type { SkillPromptResolution, AvailableSkillEntry, SkillSources, } from './prompt-resolver.js';
14
+ export { resolveSkillPrompt, getAllAvailableSkills } from './prompt-resolver.js';
13
15
  export { platformSkills, designSkill, sketchSkill, prdSkill, refineSkill, refineItemSkill, architectureSkill, sessionNotesSkill, buildSkill, scaffoldSkill, outlineSkill, literatureReviewSkill, draftSectionSkill, peerReviewSkill, researchScaffoldSkill, businessVisionSkill, marketAnalysisSkill, competitorAnalysisSkill, financialModelSkill, pitchOutlineSkill, businessReviewSkill, brandSetupSkill, contentStrategySkill, contentCalendarSkill, createContentSkill, contentReviewSkill, curriculumDesignSkill, lessonPlanSkill, assessmentDesignSkill, courseReviewSkill, bookOutlineSkill, characterDesignSkill, plotThreadsSkill, sceneBreakdownSkill, bookReviewSkill, } from './platform-skills.js';
@@ -3,4 +3,5 @@ export { parseSkillMarkdown, loadSkillsFromDir } from './loader.js';
3
3
  export { resolveLayeredSkills, resolveSkillsForAgent } from './resolver.js';
4
4
  export { detectCollisions, formatCollisionWarnings, diffForkVsUpstream, buildForkContent, buildNewSkillContent, validateSkill, } from './operations.js';
5
5
  export { getSkillsDir, getSkillFolder, getSkillFile, ensureSkillsDir, isValidSkillName, getScopeConfigPath, readScopeConfig as readSkillScopeConfig, readScopeConfigSync as readSkillScopeConfigSync, writeScopeConfig as writeSkillScopeConfig, getAllBindings as getSkillBindings, resolveBinding as resolveSkillBinding, } from './paths.js';
6
+ export { resolveSkillPrompt, getAllAvailableSkills } from './prompt-resolver.js';
6
7
  export { platformSkills, designSkill, sketchSkill, prdSkill, refineSkill, refineItemSkill, architectureSkill, sessionNotesSkill, buildSkill, scaffoldSkill, outlineSkill, literatureReviewSkill, draftSectionSkill, peerReviewSkill, researchScaffoldSkill, businessVisionSkill, marketAnalysisSkill, competitorAnalysisSkill, financialModelSkill, pitchOutlineSkill, businessReviewSkill, brandSetupSkill, contentStrategySkill, contentCalendarSkill, createContentSkill, contentReviewSkill, curriculumDesignSkill, lessonPlanSkill, assessmentDesignSkill, courseReviewSkill, bookOutlineSkill, characterDesignSkill, plotThreadsSkill, sceneBreakdownSkill, bookReviewSkill, } from './platform-skills.js';
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Unified skill prompt resolver — used by both CLI and Desktop.
3
+ *
4
+ * Resolves a slash command name to a skill prompt using:
5
+ * 1. Binding resolution (config.json slashCommands)
6
+ * 2. 5-layer priority: project → user → SDK platform → agents builtin → agents-coding
7
+ *
8
+ * Also provides getAllAvailableSkills() for autocomplete/picker display.
9
+ */
10
+ import type { ForkedFromMarker } from './types.js';
11
+ /** Result of resolving a skill prompt */
12
+ export interface SkillPromptResolution {
13
+ /** The resolved skill prompt text */
14
+ prompt: string;
15
+ /** The skill name that provided the prompt (may differ from input if bound) */
16
+ skillName: string;
17
+ /** Whether this was resolved via a config.json binding */
18
+ isBound: boolean;
19
+ /** Fork info if the resolved skill is forked from an SDK skill */
20
+ forkedFrom?: ForkedFromMarker;
21
+ /** Source layer where the skill was found */
22
+ source?: 'project' | 'user' | 'sdk' | 'agents' | 'agents-coding' | 'factory';
23
+ }
24
+ /** Entry in the available skills list (for autocomplete/picker) */
25
+ export interface AvailableSkillEntry {
26
+ /** Skill name (used as slash command) */
27
+ name: string;
28
+ /** Human-readable description */
29
+ description: string;
30
+ /** Where this skill comes from */
31
+ source: 'project' | 'user' | 'sdk' | 'agents' | 'binding';
32
+ /** Scope for custom skills */
33
+ scope?: 'user' | 'project';
34
+ /** Whether the skill is enabled (custom skills only) */
35
+ enabled?: boolean;
36
+ /** Whether the skill has validation warnings */
37
+ hasWarnings?: boolean;
38
+ /** For binding entries: the command name */
39
+ boundCommand?: string;
40
+ /** Whether this is a forked skill */
41
+ isForked?: boolean;
42
+ }
43
+ /** Additional skill sources that consumers can provide */
44
+ export interface SkillSources {
45
+ /** Factory skills (from @compilr-dev/factory) */
46
+ factorySkills?: readonly {
47
+ name: string;
48
+ description: string;
49
+ prompt: string;
50
+ }[];
51
+ /** Coding skills (from @compilr-dev/agents-coding) */
52
+ codingSkills?: readonly {
53
+ name: string;
54
+ description: string;
55
+ prompt: string;
56
+ }[];
57
+ }
58
+ /**
59
+ * Resolve a slash command name to a skill prompt.
60
+ *
61
+ * Resolution order:
62
+ * 1. Check bindings (config.json slashCommands — project overrides user)
63
+ * 2. Project-scoped custom skills (<projectDir>/.compilr/skills/)
64
+ * 3. User-scoped custom skills (~/.compilr-dev/skills/)
65
+ * 4. SDK platform skills
66
+ * 5. Additional sources (factory, agents builtin, agents-coding)
67
+ *
68
+ * @param name - The slash command name (without leading /)
69
+ * @param projectDir - Project directory for project-scoped skills and bindings
70
+ * @param sources - Additional skill sources (factory, coding)
71
+ * @returns Resolution result with prompt and metadata, or null if not found
72
+ */
73
+ export declare function resolveSkillPrompt(name: string, projectDir?: string, sources?: SkillSources): SkillPromptResolution | null;
74
+ /**
75
+ * Get all available skills for display (autocomplete, picker, help menu).
76
+ *
77
+ * Returns a deduplicated list from all sources with metadata.
78
+ * Project skills override user skills override SDK skills (by name).
79
+ *
80
+ * @param projectDir - Project directory for project-scoped skills and bindings
81
+ * @param sources - Additional skill sources (factory, coding)
82
+ * @returns List of all available skills with source and metadata
83
+ */
84
+ export declare function getAllAvailableSkills(projectDir?: string, sources?: SkillSources): AvailableSkillEntry[];
@@ -0,0 +1,235 @@
1
+ /**
2
+ * Unified skill prompt resolver — used by both CLI and Desktop.
3
+ *
4
+ * Resolves a slash command name to a skill prompt using:
5
+ * 1. Binding resolution (config.json slashCommands)
6
+ * 2. 5-layer priority: project → user → SDK platform → agents builtin → agents-coding
7
+ *
8
+ * Also provides getAllAvailableSkills() for autocomplete/picker display.
9
+ */
10
+ import { readFileSync, existsSync, readdirSync } from 'node:fs';
11
+ import { join } from 'node:path';
12
+ import { parseSkillMarkdown } from './loader.js';
13
+ import { resolveBinding, getSkillsDir, readScopeConfigSync } from './paths.js';
14
+ import { platformSkills } from './platform-skills.js';
15
+ // Re-export builtinSkills from agents (available via SDK re-export)
16
+ // The SDK re-exports builtinSkills from @compilr-dev/agents
17
+ import { builtinSkills } from '@compilr-dev/agents';
18
+ // =============================================================================
19
+ // Prompt Resolution
20
+ // =============================================================================
21
+ /**
22
+ * Read a skill prompt from a scoped directory (project or user).
23
+ * Returns null if the skill doesn't exist, is disabled, or has malformed frontmatter.
24
+ */
25
+ function readScopedSkillPrompt(scope, name, projectDir) {
26
+ try {
27
+ const file = join(getSkillsDir(scope, projectDir), name, 'SKILL.md');
28
+ if (!existsSync(file))
29
+ return null;
30
+ const content = readFileSync(file, 'utf-8');
31
+ const parsed = parseSkillMarkdown(content);
32
+ if (!parsed || parsed.enabled === false)
33
+ return null;
34
+ return parsed.prompt;
35
+ }
36
+ catch {
37
+ return null;
38
+ }
39
+ }
40
+ /**
41
+ * Read the forkedFrom marker from a scoped skill.
42
+ */
43
+ function readScopedSkillForkedFrom(scope, name, projectDir) {
44
+ try {
45
+ const file = join(getSkillsDir(scope, projectDir), name, 'SKILL.md');
46
+ const content = readFileSync(file, 'utf-8');
47
+ const parsed = parseSkillMarkdown(content);
48
+ return parsed?.forkedFrom ?? null;
49
+ }
50
+ catch {
51
+ return null;
52
+ }
53
+ }
54
+ /**
55
+ * Resolve a slash command name to a skill prompt.
56
+ *
57
+ * Resolution order:
58
+ * 1. Check bindings (config.json slashCommands — project overrides user)
59
+ * 2. Project-scoped custom skills (<projectDir>/.compilr/skills/)
60
+ * 3. User-scoped custom skills (~/.compilr-dev/skills/)
61
+ * 4. SDK platform skills
62
+ * 5. Additional sources (factory, agents builtin, agents-coding)
63
+ *
64
+ * @param name - The slash command name (without leading /)
65
+ * @param projectDir - Project directory for project-scoped skills and bindings
66
+ * @param sources - Additional skill sources (factory, coding)
67
+ * @returns Resolution result with prompt and metadata, or null if not found
68
+ */
69
+ export function resolveSkillPrompt(name, projectDir, sources) {
70
+ // 1. Check bindings
71
+ const boundName = resolveBinding(name, projectDir);
72
+ if (boundName && boundName !== name) {
73
+ for (const scope of ['project', 'user']) {
74
+ const prompt = readScopedSkillPrompt(scope, boundName, projectDir);
75
+ if (prompt) {
76
+ const forkedFrom = readScopedSkillForkedFrom(scope, boundName, projectDir);
77
+ return {
78
+ prompt,
79
+ skillName: boundName,
80
+ isBound: true,
81
+ forkedFrom: forkedFrom ?? undefined,
82
+ source: scope,
83
+ };
84
+ }
85
+ }
86
+ // Bound skill not found — fall through to normal resolution
87
+ }
88
+ // 2. Project-scoped custom skills
89
+ if (projectDir) {
90
+ const prompt = readScopedSkillPrompt('project', name, projectDir);
91
+ if (prompt) {
92
+ return { prompt, skillName: name, isBound: false, source: 'project' };
93
+ }
94
+ }
95
+ // 3. User-scoped custom skills
96
+ {
97
+ const prompt = readScopedSkillPrompt('user', name);
98
+ if (prompt) {
99
+ return { prompt, skillName: name, isBound: false, source: 'user' };
100
+ }
101
+ }
102
+ // 4. SDK platform skills
103
+ const sdkSkill = platformSkills.find((s) => s.name === name);
104
+ if (sdkSkill) {
105
+ return { prompt: sdkSkill.prompt, skillName: name, isBound: false, source: 'sdk' };
106
+ }
107
+ // 5. Additional sources
108
+ if (sources?.factorySkills) {
109
+ const factorySkill = sources.factorySkills.find((s) => s.name === name);
110
+ if (factorySkill) {
111
+ return { prompt: factorySkill.prompt, skillName: name, isBound: false, source: 'factory' };
112
+ }
113
+ }
114
+ const agentsSkill = builtinSkills.find((s) => s.name === name);
115
+ if (agentsSkill) {
116
+ return { prompt: agentsSkill.prompt, skillName: name, isBound: false, source: 'agents' };
117
+ }
118
+ if (sources?.codingSkills) {
119
+ const codingSkill = sources.codingSkills.find((s) => s.name === name);
120
+ if (codingSkill) {
121
+ return {
122
+ prompt: codingSkill.prompt,
123
+ skillName: name,
124
+ isBound: false,
125
+ source: 'agents-coding',
126
+ };
127
+ }
128
+ }
129
+ return null;
130
+ }
131
+ // =============================================================================
132
+ // Available Skills List
133
+ // =============================================================================
134
+ /**
135
+ * Get all available skills for display (autocomplete, picker, help menu).
136
+ *
137
+ * Returns a deduplicated list from all sources with metadata.
138
+ * Project skills override user skills override SDK skills (by name).
139
+ *
140
+ * @param projectDir - Project directory for project-scoped skills and bindings
141
+ * @param sources - Additional skill sources (factory, coding)
142
+ * @returns List of all available skills with source and metadata
143
+ */
144
+ export function getAllAvailableSkills(projectDir, sources) {
145
+ const entries = [];
146
+ const seen = new Set();
147
+ // 1. Custom skills (project + user)
148
+ for (const scope of ['project', 'user']) {
149
+ try {
150
+ const dir = getSkillsDir(scope, scope === 'project' ? projectDir : undefined);
151
+ const dirEntries = readdirSync(dir, { withFileTypes: true });
152
+ for (const entry of dirEntries) {
153
+ if (!entry.isDirectory() || seen.has(entry.name))
154
+ continue;
155
+ seen.add(entry.name);
156
+ try {
157
+ const content = readFileSync(join(dir, entry.name, 'SKILL.md'), 'utf-8');
158
+ const parsed = parseSkillMarkdown(content);
159
+ if (parsed) {
160
+ entries.push({
161
+ name: parsed.name,
162
+ description: parsed.description,
163
+ source: scope,
164
+ scope,
165
+ enabled: parsed.enabled !== false,
166
+ hasWarnings: parsed.description.length < 60 || !parsed.prompt.trim(),
167
+ isForked: !!parsed.forkedFrom,
168
+ });
169
+ }
170
+ }
171
+ catch {
172
+ /* skip malformed */
173
+ }
174
+ }
175
+ }
176
+ catch {
177
+ /* dir doesn't exist */
178
+ }
179
+ }
180
+ // 2. SDK platform skills
181
+ for (const skill of platformSkills) {
182
+ if (!seen.has(skill.name)) {
183
+ seen.add(skill.name);
184
+ entries.push({ name: skill.name, description: skill.description, source: 'sdk' });
185
+ }
186
+ }
187
+ // 3. Agents builtin skills
188
+ for (const skill of builtinSkills) {
189
+ if (!seen.has(skill.name)) {
190
+ seen.add(skill.name);
191
+ entries.push({ name: skill.name, description: skill.description, source: 'agents' });
192
+ }
193
+ }
194
+ // 4. Additional sources
195
+ if (sources?.factorySkills) {
196
+ for (const skill of sources.factorySkills) {
197
+ if (!seen.has(skill.name)) {
198
+ seen.add(skill.name);
199
+ entries.push({ name: skill.name, description: skill.description, source: 'sdk' });
200
+ }
201
+ }
202
+ }
203
+ if (sources?.codingSkills) {
204
+ for (const skill of sources.codingSkills) {
205
+ if (!seen.has(skill.name)) {
206
+ seen.add(skill.name);
207
+ entries.push({ name: skill.name, description: skill.description, source: 'agents' });
208
+ }
209
+ }
210
+ }
211
+ // 5. Bound commands (as separate entries)
212
+ for (const scope of ['project', 'user']) {
213
+ try {
214
+ const config = readScopeConfigSync(scope, scope === 'project' ? projectDir : undefined);
215
+ if (config.slashCommands) {
216
+ for (const [cmd, skillName] of Object.entries(config.slashCommands)) {
217
+ if (!seen.has(cmd)) {
218
+ seen.add(cmd);
219
+ entries.push({
220
+ name: cmd,
221
+ description: `→ ${skillName} [${scope} binding]`,
222
+ source: 'binding',
223
+ scope,
224
+ boundCommand: cmd,
225
+ });
226
+ }
227
+ }
228
+ }
229
+ }
230
+ catch {
231
+ /* skip */
232
+ }
233
+ }
234
+ return entries;
235
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compilr-dev/sdk",
3
- "version": "0.10.3",
3
+ "version": "0.10.5",
4
4
  "description": "Universal agent runtime for building AI-powered applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -56,7 +56,7 @@
56
56
  "node": ">=20.0.0"
57
57
  },
58
58
  "dependencies": {
59
- "@compilr-dev/agents": "^0.5.7",
59
+ "@compilr-dev/agents": "^0.5.8",
60
60
  "@compilr-dev/logger": "^0.1.0",
61
61
  "@compilr-dev/sdk": "^0.10.2",
62
62
  "ajv": "^6.14.0",