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] [--debug] [--global] [--global-only]npx @tanstack/intent@latest load <package>#<skill> [--path] [--json] [--debug] [--global] [--global-only]A successful load proves that Intent resolved the selected skill under current policy and returned its content. It does not prove that the skill was relevant to the task, reached an agent's active context, or was followed correctly. See Lifecycle boundaries.
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 @tanstack/router-core#auth-and-guards
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 @tanstack/router-core#auth-and-guards
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": []
}