@flue/client 0.0.17 → 0.0.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -215,7 +215,7 @@ function buildSkillPrompt(name, args, schema) {
215
215
  const parts = [
216
216
  HEADLESS_PREAMBLE,
217
217
  "",
218
- isFilePath(name) ? `Read and use the .agents/skills/${name} skill.` : `Use the ${name} skill.`
218
+ isFilePath(name) ? `Read the file .agents/skills/${name} directly from disk (do not use the skill tool) and follow it as your skill instructions.` : `Use the ${name} skill.`
219
219
  ];
220
220
  if (args && Object.keys(args).length > 0) parts.push(`\nArguments:\n${JSON.stringify(args, null, 2)}`);
221
221
  if (schema) parts.push(buildResultInstructions(schema));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flue/client",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "exports": {