feat: Add comprehensive Agents API support#2
Merged
iammatthias merged 5 commits intomainfrom Mar 20, 2026
Merged
Conversation
- Add complete agents management CLI (list, create, get, delete, restart, logs) - Add interactive chat TUI with bubbletea v2 (markdown rendering, tool display) - Add non-interactive chat modes: JSONL streaming, plain text (--text), multi-turn (--conversation) - Add skills, secrets, channels, devices, snapshots, tasks, and ports management - Add agent feedback submission - Add documentation for agents commands in README - Update gitignore for Claude Code files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add templates commands (list, get with featured filter)
- Add clawhub commands (list, get, install skills from marketplace)
- Add domains commands (list, add, update, delete custom domains)
- Add config commands (get, set, validate agent config)
- Add update commands (check, apply agent updates)
- Add versions command for agent version history
- Add tasks create/update with cron, interval, and at schedules
- Add ports set command with port:path mapping format
- Fix channels status JSON decode (AllowFrom as interface{})
- Update README with full command documentation
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix skills subcommands (list, create, delete, attach, detach) - Fix secrets subcommands (list, create, update, delete, attach, detach) - Add missing flags to agents create (--vibe, --emoji, --skill, --secret) - Add documentation for exec command - Add documentation for files command - Add documentation for devices command Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Fix tar filename typo (files-cli -> ipfs-cli) - Fix typo (majortiry -> majority) - Add Agents platform (beta) to intro - Add AI Agents (beta) mention to usage section - Add (Beta) tag to agents heading - Add warning block for agents beta status - Add note about default network being public Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
PauloMadro
approved these changes
Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
New Commands
Core Agent Commands
agents list- List all agentsagents create- Create new agent (with template support)agents get- Get agent detailsagents delete- Delete an agentagents restart- Restart an agentagents logs- View agent logsagents versions- List available versionsInteractive Chat
agents chat- Interactive TUI chat with streaming--json,--text,--conversationmodes--sessionflagSkills & Secrets
agents skills list/create/delete/attach/detachagents secrets list/create/update/delete/attach/detachChannels & Devices
agents channels status/configure/removeagents devices list/approve/approve-allSnapshots & Tasks
agents snapshots list/create/status/resetagents tasks list/create/update/delete/toggle/run/historyPorts & Domains
agents ports list/setagents domains list/add/update/deleteTemplates & ClawHub
agents templates list/getagents clawhub list/get/installConfig & Updates
agents config get/set/validateagents update check/applyOther
agents exec- Execute commands in containeragents files read- Read files from containeragents feedback- Submit feedbackTest plan
🤖 Generated with Claude Code