@hasna/skills 0.1.53 → 0.1.55
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 +668 -40
- package/bin/mcp.js +549 -8
- package/dist/cli/cli.test-utils.d.ts +1 -0
- package/dist/cli/commands/tool-primitives.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +541 -19
- package/dist/lib/cli-mcp-parity.d.ts +1 -1
- package/dist/lib/tool-primitives.d.ts +63 -0
- package/package.json +1 -1
- package/skills/apidocs/.claude/settings.json +5 -0
- package/skills/project-dashboard-reports/SKILL.md +1 -1
- package/skills/project-dashboard-reports/src/index.ts +1 -1
- package/skills/todos-plan/SKILL.md +194 -0
- package/skills/todos-plan/agents/openai.yaml +4 -0
- package/skills/todos-plan/package.json +9 -0
- package/skills/todos-plan/src/index.ts +68 -0
|
@@ -3,6 +3,7 @@ export declare const EXPECTED_ALL_SKILL_COUNT: number;
|
|
|
3
3
|
export declare const EXPECTED_BASIC_SKILL_COUNT: 17;
|
|
4
4
|
export declare const PACKAGE_VERSION: string;
|
|
5
5
|
export declare const SLOW_TEST_TIMEOUT = 15000;
|
|
6
|
+
export declare const CLEAN_CLI_HOME: string;
|
|
6
7
|
export declare function runCli(args: string[], env?: Record<string, string>): Promise<{
|
|
7
8
|
stdout: string;
|
|
8
9
|
stderr: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { loadConfig, saveConfig, getConfigPath, type SkillsConfig, type ConfigSc
|
|
|
16
16
|
export { buildSkillsApiUrl, getConfiguredApiUrl, loadRemoteRegistry, loadRemoteSkill, parseRemoteSkillPayload, parseRemoteRegistryPayload, type RemoteRegistryOptions, } from "./lib/remote-registry.js";
|
|
17
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
18
|
export { getCompactSkillDiscovery, getPublicSkillDiscovery, publicDiscoveryDependencies, publicDiscoveryDocumentation, publicDiscoveryEnvVars, publicDiscoveryPriceLabel, sanitizePublicDiscoveryText, type CompactSkillDiscovery, type PublicSkillDiscovery, } from "./lib/discovery.js";
|
|
19
|
+
export { TOOL_PRIMITIVE_SCHEMA_VERSION, TOOL_PRIMITIVES, createSkillToolDependencies, getSkillToolDependencies, getToolPrimitive, isGatewayBackedSkill, listToolPrimitives, validateToolPrimitiveCoverage, type SkillToolDependencies, type SkillToolDependency, type ToolPrimitive, type ToolPrimitiveCoverageIssue, type ToolPrimitiveCoverageResult, type ToolPrimitiveRuntime, type ToolPrimitiveSummary, } from "./lib/tool-primitives.js";
|
|
19
20
|
export { RemoteSkillsClient, createRemoteSkillsClient, } from "./lib/remote-client.js";
|
|
20
21
|
export { REMOTE_SKILL_RUN_CONTRACT_VERSION, normalizeRemoteSkillRunContract, type RemoteSkillRunContract, } from "./lib/remote-run-contract.js";
|
|
21
22
|
export { addSchedule, listSchedules, removeSchedule, setScheduleEnabled, getDueSchedules, recordScheduleRun, validateCron, getNextRun, type SkillSchedule, } from "./lib/scheduler.js";
|