skilld 0.1.2 → 0.2.0
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/README.md +24 -23
- package/dist/_chunks/config.mjs +8 -2
- package/dist/_chunks/config.mjs.map +1 -1
- package/dist/_chunks/llm.mjs +710 -204
- package/dist/_chunks/llm.mjs.map +1 -1
- package/dist/_chunks/pool.mjs +115 -0
- package/dist/_chunks/pool.mjs.map +1 -0
- package/dist/_chunks/releases.mjs +689 -179
- package/dist/_chunks/releases.mjs.map +1 -1
- package/dist/_chunks/storage.mjs +311 -19
- package/dist/_chunks/storage.mjs.map +1 -1
- package/dist/_chunks/sync-parallel.mjs +134 -378
- package/dist/_chunks/sync-parallel.mjs.map +1 -1
- package/dist/_chunks/types.d.mts +9 -6
- package/dist/_chunks/types.d.mts.map +1 -1
- package/dist/_chunks/utils.d.mts +137 -68
- package/dist/_chunks/utils.d.mts.map +1 -1
- package/dist/_chunks/version.d.mts +43 -6
- package/dist/_chunks/version.d.mts.map +1 -1
- package/dist/agent/index.d.mts +58 -15
- package/dist/agent/index.d.mts.map +1 -1
- package/dist/agent/index.mjs +4 -2
- package/dist/cache/index.d.mts +2 -2
- package/dist/cache/index.mjs +2 -2
- package/dist/cli.mjs +2170 -1436
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +4 -3
- package/dist/index.mjs +2 -2
- package/dist/retriv/index.d.mts +16 -2
- package/dist/retriv/index.d.mts.map +1 -1
- package/dist/retriv/index.mjs +44 -15
- package/dist/retriv/index.mjs.map +1 -1
- package/dist/retriv/worker.d.mts +33 -0
- package/dist/retriv/worker.d.mts.map +1 -0
- package/dist/retriv/worker.mjs +47 -0
- package/dist/retriv/worker.mjs.map +1 -0
- package/dist/sources/index.d.mts +2 -2
- package/dist/sources/index.mjs +2 -2
- package/dist/types.d.mts +5 -3
- package/package.json +11 -7
package/dist/agent/index.d.mts
CHANGED
|
@@ -70,6 +70,16 @@ declare function detectImportedPackages(cwd?: string): Promise<DetectResult>;
|
|
|
70
70
|
* Sanitize skill name for filesystem
|
|
71
71
|
*/
|
|
72
72
|
declare function sanitizeName(name: string): string;
|
|
73
|
+
/**
|
|
74
|
+
* Compute skill directory name from GitHub owner/repo when available,
|
|
75
|
+
* falling back to sanitized package name.
|
|
76
|
+
*
|
|
77
|
+
* Examples:
|
|
78
|
+
* vue (vuejs/core) → vuejs-core
|
|
79
|
+
* @nuxt/ui (nuxt/ui) → nuxt-ui
|
|
80
|
+
* vue-router (vuejs/router) → vuejs-router
|
|
81
|
+
*/
|
|
82
|
+
declare function computeSkillDirName(packageName: string, repoUrl?: string): string;
|
|
73
83
|
/**
|
|
74
84
|
* Install a skill directly to agent skill directories
|
|
75
85
|
* Writes to each agent's skill folder in the project (e.g., .claude/skills/package-name/)
|
|
@@ -84,19 +94,28 @@ declare function installSkillForAgents(skillName: string, skillContent: string,
|
|
|
84
94
|
paths: string[];
|
|
85
95
|
};
|
|
86
96
|
//#endregion
|
|
97
|
+
//#region src/agent/prompts/optional/types.d.ts
|
|
98
|
+
interface CustomPrompt {
|
|
99
|
+
heading: string;
|
|
100
|
+
body: string;
|
|
101
|
+
}
|
|
102
|
+
//#endregion
|
|
87
103
|
//#region src/agent/prompts/prompt.d.ts
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
104
|
+
type SkillSection = 'llm-gaps' | 'best-practices' | 'api' | 'custom';
|
|
105
|
+
/** Output file per section (inside .skilld/) */
|
|
106
|
+
declare const SECTION_OUTPUT_FILES: Record<SkillSection, string>;
|
|
107
|
+
/** Merge order for final SKILL.md body */
|
|
108
|
+
declare const SECTION_MERGE_ORDER: SkillSection[];
|
|
92
109
|
interface BuildSkillPromptOptions {
|
|
93
110
|
packageName: string;
|
|
94
111
|
/** Absolute path to skill directory with ./.skilld/ */
|
|
95
112
|
skillDir: string;
|
|
96
113
|
/** Package version (e.g., "3.5.13") */
|
|
97
114
|
version?: string;
|
|
98
|
-
/** Has GitHub
|
|
99
|
-
|
|
115
|
+
/** Has GitHub issues indexed */
|
|
116
|
+
hasIssues?: boolean;
|
|
117
|
+
/** Has GitHub discussions indexed */
|
|
118
|
+
hasDiscussions?: boolean;
|
|
100
119
|
/** Has release notes */
|
|
101
120
|
hasReleases?: boolean;
|
|
102
121
|
/** CHANGELOG filename if found in package (e.g. CHANGELOG.md, changelog.md) */
|
|
@@ -107,15 +126,21 @@ interface BuildSkillPromptOptions {
|
|
|
107
126
|
docsType?: 'llms.txt' | 'readme' | 'docs';
|
|
108
127
|
/** Package ships its own docs */
|
|
109
128
|
hasShippedDocs?: boolean;
|
|
110
|
-
/** Which sections to generate (defaults to all) */
|
|
111
|
-
sections?: SkillSection[];
|
|
112
129
|
/** Custom instructions from the user (when 'custom' section selected) */
|
|
113
|
-
customPrompt?:
|
|
130
|
+
customPrompt?: CustomPrompt;
|
|
114
131
|
}
|
|
115
132
|
/**
|
|
116
|
-
* Build
|
|
133
|
+
* Build prompt for a single section
|
|
134
|
+
*/
|
|
135
|
+
declare function buildSectionPrompt(opts: BuildSkillPromptOptions & {
|
|
136
|
+
section: SkillSection;
|
|
137
|
+
}): string;
|
|
138
|
+
/**
|
|
139
|
+
* Build prompts for all selected sections, sharing the computed preamble
|
|
117
140
|
*/
|
|
118
|
-
declare function
|
|
141
|
+
declare function buildAllSectionPrompts(opts: BuildSkillPromptOptions & {
|
|
142
|
+
sections: SkillSection[];
|
|
143
|
+
}): Map<SkillSection, string>;
|
|
119
144
|
//#endregion
|
|
120
145
|
//#region src/agent/prompts/skill.d.ts
|
|
121
146
|
/**
|
|
@@ -137,18 +162,29 @@ interface SkillOptions {
|
|
|
137
162
|
/** LLM-generated body — replaces default heading + description */
|
|
138
163
|
body?: string;
|
|
139
164
|
relatedSkills: string[];
|
|
140
|
-
|
|
165
|
+
hasIssues?: boolean;
|
|
166
|
+
hasDiscussions?: boolean;
|
|
141
167
|
hasReleases?: boolean;
|
|
142
168
|
hasChangelog?: string | false;
|
|
143
169
|
docsType?: 'llms.txt' | 'readme' | 'docs';
|
|
144
170
|
hasShippedDocs?: boolean;
|
|
145
171
|
/** Key files in package (entry points + docs) */
|
|
146
172
|
pkgFiles?: string[];
|
|
173
|
+
/** Model used to generate LLM sections */
|
|
174
|
+
generatedBy?: string;
|
|
175
|
+
/** Override directory name for frontmatter (repo-based, e.g. "vuejs-core") */
|
|
176
|
+
dirName?: string;
|
|
177
|
+
/** All packages tracked by this skill (multi-package skills) */
|
|
178
|
+
packages?: Array<{
|
|
179
|
+
name: string;
|
|
180
|
+
}>;
|
|
181
|
+
/** GitHub repo URL (owner/repo format or full URL) */
|
|
182
|
+
repoUrl?: string;
|
|
147
183
|
}
|
|
148
184
|
declare function generateSkillMd(opts: SkillOptions): string;
|
|
149
185
|
//#endregion
|
|
150
186
|
//#region src/agent/llm/index.d.ts
|
|
151
|
-
type OptimizeModel = 'opus' | 'sonnet' | 'haiku' | 'gemini-3-pro' | 'gemini-3-flash' | '
|
|
187
|
+
type OptimizeModel = 'opus' | 'sonnet' | 'haiku' | 'gemini-3-pro' | 'gemini-3-flash' | 'gpt-5.2-codex' | 'gpt-5.1-codex-max' | 'gpt-5.2' | 'gpt-5.1-codex-mini';
|
|
152
188
|
interface ModelInfo {
|
|
153
189
|
id: OptimizeModel;
|
|
154
190
|
name: string;
|
|
@@ -162,6 +198,7 @@ interface StreamProgress {
|
|
|
162
198
|
type: 'reasoning' | 'text';
|
|
163
199
|
text: string;
|
|
164
200
|
reasoning: string;
|
|
201
|
+
section?: SkillSection;
|
|
165
202
|
}
|
|
166
203
|
interface OptimizeDocsOptions {
|
|
167
204
|
packageName: string;
|
|
@@ -172,19 +209,23 @@ interface OptimizeDocsOptions {
|
|
|
172
209
|
hasReleases?: boolean;
|
|
173
210
|
hasChangelog?: string | false;
|
|
174
211
|
docFiles?: string[];
|
|
212
|
+
docsType?: 'llms.txt' | 'readme' | 'docs';
|
|
213
|
+
hasShippedDocs?: boolean;
|
|
175
214
|
onProgress?: (progress: StreamProgress) => void;
|
|
176
215
|
timeout?: number;
|
|
177
216
|
verbose?: boolean;
|
|
217
|
+
debug?: boolean;
|
|
178
218
|
noCache?: boolean;
|
|
179
219
|
/** Which sections to generate */
|
|
180
220
|
sections?: SkillSection[];
|
|
181
221
|
/** Custom instructions from the user */
|
|
182
|
-
customPrompt?:
|
|
222
|
+
customPrompt?: CustomPrompt;
|
|
183
223
|
}
|
|
184
224
|
interface OptimizeResult {
|
|
185
225
|
optimized: string;
|
|
186
226
|
wasOptimized: boolean;
|
|
187
227
|
error?: string;
|
|
228
|
+
warnings?: string[];
|
|
188
229
|
reasoning?: string;
|
|
189
230
|
finishReason?: string;
|
|
190
231
|
usage?: {
|
|
@@ -193,13 +234,15 @@ interface OptimizeResult {
|
|
|
193
234
|
totalTokens: number;
|
|
194
235
|
};
|
|
195
236
|
cost?: number;
|
|
237
|
+
debugLogsDir?: string;
|
|
196
238
|
}
|
|
197
239
|
declare function getModelName(id: OptimizeModel): string;
|
|
240
|
+
declare function getModelLabel(id: OptimizeModel): string;
|
|
198
241
|
declare function getAvailableModels(): Promise<ModelInfo[]>;
|
|
199
242
|
declare function optimizeDocs(opts: OptimizeDocsOptions): Promise<OptimizeResult>;
|
|
200
243
|
//#endregion
|
|
201
244
|
//#region src/agent/registry.d.ts
|
|
202
245
|
declare const agents: Record<AgentType, AgentConfig>;
|
|
203
246
|
//#endregion
|
|
204
|
-
export { type AgentConfig, type AgentType, FILE_PATTERN_MAP, type ModelInfo, type OptimizeDocsOptions, type OptimizeModel, type OptimizeResult, type SkillMetadata, type SkillOptions, type SkillSection, type StreamProgress, agents,
|
|
247
|
+
export { type AgentConfig, type AgentType, type CustomPrompt, FILE_PATTERN_MAP, type ModelInfo, type OptimizeDocsOptions, type OptimizeModel, type OptimizeResult, SECTION_MERGE_ORDER, SECTION_OUTPUT_FILES, type SkillMetadata, type SkillOptions, type SkillSection, type StreamProgress, agents, buildAllSectionPrompts, buildSectionPrompt, computeSkillDirName, detectImportedPackages, detectInstalledAgents, detectTargetAgent, generateSkillMd, getAgentVersion, getAvailableModels, getModelLabel, getModelName, installSkillForAgents, optimizeDocs, sanitizeName };
|
|
205
248
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/agent/types.ts","../../src/agent/detect.ts","../../src/agent/detect-imports.ts","../../src/agent/install.ts","../../src/agent/prompts/prompt.ts","../../src/agent/prompts/skill.ts","../../src/agent/llm/index.ts","../../src/agent/registry.ts"],"mappings":";;AAIA;;KAAY,SAAA;AAAA,UAaK,WAAA;EACf,IAAA,EAAM,SAAA;EACN,WAAA;EAF0B;EAI1B,SAAA;EAHe;EAKf,eAAA;EALM;EAON,eAAA;EAJA;EAMA,GAAA;AAAA;AAAA,UAGe,aAAA;EACf,IAAA;EACA,OAAA;EAFe;EAIf,UAAA;EACA,WAAA;EAL4B;EAO5B,KAAA;AAAA;;;;;cAOW,gBAAA,EAAkB,MAAA;;;;;AA3B/B;iBCJgB,qBAAA,CAAA,GAAyB,SAAA;;;;;iBAUzB,iBAAA,CAAA,GAAqB,SAAA;;;;iBAmFrB,eAAA,CAAgB,SAAA,EAAW,SAAA;;;;ADtG3C;;;UEMiB,YAAA;EACf,IAAA;EACA,KAAA;EACA,MAAA;AAAA;AAAA,UAGe,YAAA;EACf,QAAA,EAAU,YAAA;EACV,KAAA;AAAA;;;;;iBAwBoB,sBAAA,CAAuB,GAAA,YAA8B,OAAA,CAAQ,YAAA;;;;;AFzBnF;
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/agent/types.ts","../../src/agent/detect.ts","../../src/agent/detect-imports.ts","../../src/agent/install.ts","../../src/agent/prompts/optional/types.ts","../../src/agent/prompts/prompt.ts","../../src/agent/prompts/skill.ts","../../src/agent/llm/index.ts","../../src/agent/registry.ts"],"mappings":"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"}
|
package/dist/agent/index.mjs
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import "../_chunks/config.mjs";
|
|
2
|
+
import "../_chunks/storage.mjs";
|
|
3
|
+
import { _ as detectImportedPackages, a as generateSkillMd, b as getAgentVersion, d as SECTION_OUTPUT_FILES, f as buildAllSectionPrompts, g as sanitizeName, h as installSkillForAgents, i as optimizeDocs, m as computeSkillDirName, n as getModelLabel, o as FILE_PATTERN_MAP, p as buildSectionPrompt, r as getModelName, t as getAvailableModels, u as SECTION_MERGE_ORDER, v as detectInstalledAgents, x as agents, y as detectTargetAgent } from "../_chunks/llm.mjs";
|
|
4
|
+
export { FILE_PATTERN_MAP, SECTION_MERGE_ORDER, SECTION_OUTPUT_FILES, agents, buildAllSectionPrompts, buildSectionPrompt, computeSkillDirName, detectImportedPackages, detectInstalledAgents, detectTargetAgent, generateSkillMd, getAgentVersion, getAvailableModels, getModelLabel, getModelName, installSkillForAgents, optimizeDocs, sanitizeName };
|
package/dist/cache/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { C as
|
|
2
|
-
export { CACHE_DIR, type CacheConfig, type CachedDoc, type CachedPackage, REFERENCES_DIR, SEARCH_DB, type ShippedSkill, clearAllCache, clearCache, ensureCacheDir, getCacheDir, getCacheKey, getPackageDbPath, getPkgKeyFiles, getShippedSkills, getVersionKey, hasShippedDocs, isCached,
|
|
1
|
+
import { A as CACHE_DIR, C as readCachedSection, D as CacheConfig, E as writeToCache, M as SEARCH_DB, N as getPackageDbPath, O as CachedDoc, S as readCachedDocs, T as writeSections, _ as linkReleases, a as clearAllCache, b as listCached, c as getPkgKeyFiles, d as isCached, f as linkDiscussions, g as linkReferences, h as linkPkgNamed, i as ShippedSkill, j as REFERENCES_DIR, k as CachedPackage, l as getShippedSkills, m as linkPkg, n as getCacheKey, o as clearCache, p as linkIssues, r as getVersionKey, s as ensureCacheDir, t as getCacheDir, u as hasShippedDocs, v as linkSections, w as resolvePkgDir, x as listReferenceFiles, y as linkShippedSkill } from "../_chunks/version.mjs";
|
|
2
|
+
export { CACHE_DIR, type CacheConfig, type CachedDoc, type CachedPackage, REFERENCES_DIR, SEARCH_DB, type ShippedSkill, clearAllCache, clearCache, ensureCacheDir, getCacheDir, getCacheKey, getPackageDbPath, getPkgKeyFiles, getShippedSkills, getVersionKey, hasShippedDocs, isCached, linkDiscussions, linkIssues, linkPkg, linkPkgNamed, linkReferences, linkReleases, linkSections, linkShippedSkill, listCached, listReferenceFiles, readCachedDocs, readCachedSection, resolvePkgDir, writeSections, writeToCache };
|
package/dist/cache/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { a as getCacheDir, i as getPackageDbPath, n as REFERENCES_DIR, o as getCacheKey, r as SEARCH_DB, s as getVersionKey, t as CACHE_DIR } from "../_chunks/config.mjs";
|
|
2
|
-
import {
|
|
3
|
-
export { CACHE_DIR, REFERENCES_DIR, SEARCH_DB, clearAllCache, clearCache, ensureCacheDir, getCacheDir, getCacheKey, getPackageDbPath, getPkgKeyFiles, getShippedSkills, getVersionKey, hasShippedDocs, isCached,
|
|
2
|
+
import { S as writeToCache, _ as listReferenceFiles, a as getShippedSkills, b as resolvePkgDir, c as linkDiscussions, d as linkPkgNamed, f as linkReferences, g as listCached, h as linkShippedSkill, i as getPkgKeyFiles, l as linkIssues, m as linkSections, n as clearCache, o as hasShippedDocs, p as linkReleases, r as ensureCacheDir, s as isCached, t as clearAllCache, u as linkPkg, v as readCachedDocs, x as writeSections, y as readCachedSection } from "../_chunks/storage.mjs";
|
|
3
|
+
export { CACHE_DIR, REFERENCES_DIR, SEARCH_DB, clearAllCache, clearCache, ensureCacheDir, getCacheDir, getCacheKey, getPackageDbPath, getPkgKeyFiles, getShippedSkills, getVersionKey, hasShippedDocs, isCached, linkDiscussions, linkIssues, linkPkg, linkPkgNamed, linkReferences, linkReleases, linkSections, linkShippedSkill, listCached, listReferenceFiles, readCachedDocs, readCachedSection, resolvePkgDir, writeSections, writeToCache };
|