Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/skills

package.json

53 lines · 1.9 KB · JSON
{
	"name": "@kody/skills",
	"version": "1.0.0",
	"private": false,
	"license": "MIT",
	"type": "module",
	"description": "General-purpose skills registry for agents: store, retrieve, edit, version, and revert reusable skill documents.",
	"exports": {
		".": "./src/index.ts",
		"./skill-list": "./src/skill-list.ts",
		"./skill-get": "./src/skill-get.ts",
		"./skill-save": "./src/skill-save.ts",
		"./skill-delete": "./src/skill-delete.ts",
		"./skill-history": "./src/skill-history.ts",
		"./skill-revert": "./src/skill-revert.ts",
		"./skill-search": "./src/skill-search.ts",
		"./legacy-dump": "./src/legacy-dump.ts",
		"./migrate-to-repo": "./src/migrate-to-repo.ts",
		"./on-repo-pushed": "./src/on-repo-pushed.ts"
	},
	"kody": {
		"id": "skills",
		"description": "Store, retrieve, edit, version, and revert reusable agent skill documents via skill_list then skill_get.",
		"searchText": "skills registry agent skills skill documents prompt library store retrieve edit version revert reusable markdown skill documents plain repo git history call skill_list then skill_get skill_save skill_delete skill_history skill_revert bulk git lane repo.pushed auto sync dryRun",
		"tags": [
			"skills",
			"registry",
			"agents",
			"prompts",
			"knowledge",
			"versioning",
			"git",
			"repos"
		],
		"retrievers": {
			"skills": {
				"export": "./skill-search",
				"name": "Skill documents",
				"description": "Reusable agent skill documents stored in this registry. Each result is a skill (id, name, description); load full content with skill_get({ id }). Matches queries against skill names and descriptions. Soft-fails empty if storage is slow.",
				"scopes": [
					"search",
					"context"
				]
			}
		},
		"subscriptions": {
			"repo.pushed": {
				"handler": "./src/on-repo-pushed.ts",
				"description": "When the plain skills repo receives a git push, resync skills_index so skill_list and search stay current without a manual migrate-to-repo call."
			}
		}
	}
}