intent load loads a compact skill identity from the current install and prints the matching SKILL.md content.
npx @tanstack/intent@latest load <package>#<skill> [--path] [--json] [--global] [--global-only]npx @tanstack/intent@latest load <package>#<skill> [--path] [--json] [--global] [--global-only]The package can be scoped or unscoped. The skill can include slash-separated sub-skill names.
Examples:
npx @tanstack/intent@latest load @tanstack/query#fetching
npx @tanstack/intent@latest load @tanstack/query#core/fetching
npx @tanstack/intent@latest load some-lib#core --pathnpx @tanstack/intent@latest load @tanstack/query#fetching
npx @tanstack/intent@latest load @tanstack/query#core/fetching
npx @tanstack/intent@latest load some-lib#core --path--json prints:
{
"package": "@tanstack/query",
"skill": "fetching",
"path": "node_modules/@tanstack/query/skills/fetching/SKILL.md",
"packageRoot": "node_modules/@tanstack/query",
"source": "local",
"version": "5.0.0",
"content": "---\nname: fetching\n---\n\n...",
"warnings": []
}{
"package": "@tanstack/query",
"skill": "fetching",
"path": "node_modules/@tanstack/query/skills/fetching/SKILL.md",
"packageRoot": "node_modules/@tanstack/query",
"source": "local",
"version": "5.0.0",
"content": "---\nname: fetching\n---\n\n...",
"warnings": []
}