feat(agent): add skills for skill-list command

This commit is contained in:
chenanran555
2026-07-27 18:17:39 +08:00
parent e22058b0f7
commit 6f9e006fef
2 changed files with 2 additions and 0 deletions
@@ -42,6 +42,7 @@ export default defineCommand({
...CREDENTIALS_NOTE,
"Providers without a skill listing API (e.g. ark) return an empty list.",
"For agent-driven skill selection, use `--source all --output json`: one call returns both catalogs with per-skill `source` and `description` fields to pick from.",
"When generating a task that needs a suitable skill, call this command to match official or custom skills before wiring them into the task.",
],
validate: (f) =>
f.source && !SKILL_SOURCES.includes(f.source as SkillSource)
@@ -445,6 +445,7 @@ bl managed-agent session send --session-id sess_abc123 --message "continue"
- Resolved credentials are injected into the SDK in-memory and cleared from the environment; they never persist in process env.
- Providers without a skill listing API (e.g. ark) return an empty list.
- For agent-driven skill selection, use `--source all --output json`: one call returns both catalogs with per-skill `source` and `description` fields to pick from.
- When generating a task that needs a suitable skill, call this command to match official or custom skills before wiring them into the task.
#### Examples