@compilr-dev/sdk 0.7.17 → 0.7.18
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 +15 -1
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -261,10 +261,24 @@ class CompilrAgentImpl {
|
|
|
261
261
|
'brand_model_get',
|
|
262
262
|
'curriculum_model_get',
|
|
263
263
|
'book_model_get',
|
|
264
|
-
//
|
|
264
|
+
// Artifact & plan tools
|
|
265
265
|
'anchor_list',
|
|
266
266
|
'artifact_list',
|
|
267
|
+
'artifact_get',
|
|
267
268
|
'plan_get',
|
|
269
|
+
// Git tools (diffs, blame can be very large)
|
|
270
|
+
'git_diff',
|
|
271
|
+
'git_blame',
|
|
272
|
+
'git_file_history',
|
|
273
|
+
// Runner tools (test/lint/build output is routinely 10-50KB)
|
|
274
|
+
'run_tests',
|
|
275
|
+
'run_lint',
|
|
276
|
+
'run_build',
|
|
277
|
+
'run_format',
|
|
278
|
+
// Web & search tools
|
|
279
|
+
'web_fetch',
|
|
280
|
+
'find_references',
|
|
281
|
+
'find_definition',
|
|
268
282
|
],
|
|
269
283
|
// Merge user overrides if provided
|
|
270
284
|
...(typeof config?.context?.observationMask === 'object'
|