@hasna/skills 0.1.29 → 0.1.31
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/bin/index.js +1593 -10958
- package/bin/mcp.js +1522 -11657
- package/dist/index.d.ts +4 -0
- package/dist/index.js +686 -9552
- package/dist/lib/auth-store.d.ts +1 -1
- package/dist/lib/config.d.ts +1 -0
- package/dist/lib/discovery.d.ts +23 -0
- package/dist/lib/pricing.d.ts +89 -0
- package/dist/lib/remote-client.d.ts +18 -0
- package/dist/lib/remote-run-contract.d.ts +29 -0
- package/dist/mcp/http.d.ts +1 -0
- package/package.json +3 -14
- package/skills/apidocs/.claude/settings.json +5 -0
- package/skills/security-audit/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export { appendRunEvent, completeSkillRun, createSkillRun, findSkillRun, getRunE
|
|
|
14
14
|
export { getSkillDocs, getSkillBestDoc, getSkillRequirements, runSkill, generateEnvExample, generateSkillMd, type SkillDocs, type SkillRequirements, } from "./lib/skillinfo.js";
|
|
15
15
|
export { loadConfig, saveConfig, getConfigPath, type SkillsConfig, type ConfigScope, } from "./lib/config.js";
|
|
16
16
|
export { buildSkillsApiUrl, getConfiguredApiUrl, loadRemoteRegistry, loadRemoteSkill, parseRemoteSkillPayload, parseRemoteRegistryPayload, type RemoteRegistryOptions, } from "./lib/remote-registry.js";
|
|
17
|
+
export { ARTICLE_GENERATION_SLUG, getAllPremiumSlugs, getPublicSkillPricing, getSkillCatalogBillingFields, getSkillPricing, getSkillRunCostCents, isPremiumSkill, validateBlogArticleRunOptions, type BlogArticleRunOptions, type BlogArticleValidationResult, type PublicSkillPricing, type SkillPricing, } from "./lib/pricing.js";
|
|
18
|
+
export { getCompactSkillDiscovery, getPublicSkillDiscovery, publicDiscoveryDependencies, publicDiscoveryDocumentation, publicDiscoveryEnvVars, publicDiscoveryPriceLabel, sanitizePublicDiscoveryText, type CompactSkillDiscovery, type PublicSkillDiscovery, } from "./lib/discovery.js";
|
|
19
|
+
export { RemoteSkillsClient, createRemoteSkillsClient, } from "./lib/remote-client.js";
|
|
20
|
+
export { REMOTE_SKILL_RUN_CONTRACT_VERSION, normalizeRemoteSkillRunContract, type RemoteSkillRunContract, } from "./lib/remote-run-contract.js";
|
|
17
21
|
export { addSchedule, listSchedules, removeSchedule, setScheduleEnabled, getDueSchedules, recordScheduleRun, validateCron, getNextRun, type SkillSchedule, } from "./lib/scheduler.js";
|
|
18
22
|
export { parseSkillFrontmatter, validateRegistryConsistency, validateSkillDirectory, type RegistryConsistencyResult, type SkillFrontmatter, type SkillValidationMessage, type SkillValidationResult, } from "./lib/skill-validation.js";
|
|
19
23
|
export { createRegistrySyncArtifact, writeRegistrySyncArtifact, type RegistrySyncArtifact, type RegistrySyncOptions, type RegistrySyncSkill, } from "./lib/registry-sync.js";
|