From cloudbase-ai-toolkit
Analyzes, standardizes, validates, and syncs local skills into Claude, Cursor, CodeBuddy, and Codex directories using Node scripts and CLI workflows.
npx claudepluginhub tencentcloudbase/cloudbase-mcpThis skill uses the workspace's default tool permissions.
Manage locally maintained skills as reusable, standard skill assets.
references/cli-alignment.mdreferences/install-workflow.mdreferences/mapping-extension.mdreferences/migration-playbook.mdreferences/source-classification.mdscripts/inspect-source.mjsscripts/install-skill.mjsscripts/lib/agent-mappings.mjsscripts/lib/install-model.mjsscripts/lib/path-safety.mjsscripts/validate-skill.mjsBootstraps a new agent skill with SKILL.md in .agents/skills (local) or ~/.agents/skills (--global), symlinks to .claude/skills for Claude Code discovery.
Installs, lists, and removes community skills from GitHub repos or local paths using /agent:skill commands with install, list, remove options and scopes.
Reference for Agent Skills Open Standard. Guides authoring portable skills for Claude Code, Cursor, VS Code, and 20+ AI agents. Covers frontmatter schema, naming rules, directory structure, validation.
Share bugs, ideas, or general feedback.
Manage locally maintained skills as reusable, standard skill assets.
Use this skill to:
SKILL.md-based structurereferences/source-classification.md and run scripts/inspect-source.mjs first.references/migration-playbook.md and convert the source into a standard skill folder before installation.references/cli-alignment.md and references/install-workflow.md to preserve the source-first install model used in this repo.scripts/validate-skill.mjs before and after installation when structure or path correctness is in doubt.references/mapping-extension.md before adding or changing mappings../skills to Codex and CodeBuddy."| Task | Read | Script |
|---|---|---|
Understand how this differs from or aligns with skills CLI | references/cli-alignment.md | |
| Classify local sources and detect migration candidates | references/source-classification.md | scripts/inspect-source.mjs |
| Convert non-standard local folders into standard skills | references/migration-playbook.md | scripts/inspect-source.mjs |
| Install or mount local skills into agent directories | references/install-workflow.md | scripts/install-skill.mjs |
| Add or update agent mappings | references/mapping-extension.md | scripts/install-skill.mjs |
| Validate structure or installation results | references/install-workflow.md | scripts/validate-skill.mjs |
skills CLI installation semantics as the baseline, but follow this repo's source-first project install model for locally maintained skills.symlink mode, keep skills/ as the single maintained source of truth and expose .agents entries as links instead of extra copies.project means the current workspace, global means the user-level agent directory.skills CLI.node skills/manage-local-skills/scripts/inspect-source.mjs --input <path> --json
node skills/manage-local-skills/scripts/validate-skill.mjs --skill-dir <path>
node skills/manage-local-skills/scripts/install-skill.mjs --source-dir skills --skill <name> --agent cursor --scope project --mode symlink
standard, nonstandard, or mixed?symlink mode was requested, does the installed .agents entry resolve back to the maintained source?skills CLI, did you state the difference clearly?