@stacksjs/skills 0.70.86 → 0.70.88

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@stacksjs/skills",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.70.86",
5
+ "version": "0.70.88",
6
6
  "description": "Agent skills for the Stacks framework, following the agentskills.io standard.",
7
7
  "author": "Chris Breuer",
8
8
  "contributors": [
@@ -54,11 +54,11 @@
54
54
  "prepublishOnly": "bun run build"
55
55
  },
56
56
  "dependencies": {
57
- "@stacksjs/path": "0.70.86",
58
- "@stacksjs/storage": "0.70.86"
57
+ "@stacksjs/path": "0.70.88",
58
+ "@stacksjs/storage": "0.70.88"
59
59
  },
60
60
  "devDependencies": {
61
61
  "better-dx": "^0.2.16",
62
- "@stacksjs/types": "0.70.86"
62
+ "@stacksjs/types": "0.70.88"
63
63
  }
64
64
  }
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export type { Skill, SkillMetadata, SkillManifest } from './types';
2
- export { listSkills, getSkill, validateSkill, loadSkillMetadata } from './skills';
package/dist/index.js DELETED
@@ -1,2 +0,0 @@
1
- // @bun
2
- export{e as validateSkill,k as loadSkillMetadata,a as listSkills,i as getSkill};
package/dist/skills.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import type { Skill, SkillMetadata } from './types';
2
- export declare function listSkills(): string[];
3
- export declare function getSkill(name: string): Skill | null;
4
- export declare function loadSkillMetadata(name: string): SkillMetadata | null;
5
- export declare function validateSkill(name: string): { valid: boolean, errors: string[] };
package/dist/types.d.ts DELETED
@@ -1,28 +0,0 @@
1
- export declare interface SkillMetadata {
2
- name: string
3
- description: string
4
- license?: string
5
- compatibility?: string
6
- metadata?: Record<string, unknown>
7
- 'allowed-tools'?: string
8
- 'disable-model-invocation'?: boolean
9
- 'user-invocable'?: boolean
10
- context?: 'fork'
11
- agent?: 'Explore' | 'Plan' | 'general-purpose'
12
- 'argument-hint'?: string
13
- model?: string
14
- effort?: 'low' | 'medium' | 'high' | 'max'
15
- }
16
- export declare interface Skill {
17
- metadata: SkillMetadata
18
- instructions: string
19
- path: string
20
- scripts?: string[]
21
- references?: string[]
22
- assets?: string[]
23
- }
24
- export declare interface SkillManifest {
25
- skills: Skill[]
26
- version: string
27
- framework: string
28
- }