Intelligence/Agents: Create succeeds but new agent is invisible (is_public=false default + list_public-only) #216
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_archipelagos#216
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Agents island (in hero_archipelagos) appears to silently fail on Create. Investigated network: server returns
sid="0007"(success), but the agent never appears in the list.Root cause
Two-part envelope mismatch:
is_public: falsefor every new agent (no toggle exposed in the form).ai.botservice.list_publicwhich filters out non-public agents.So newly-created agents land in OSIS storage but are immediately invisible.
Repro
ai.bot.setsucceeded withsidreturn; subsequentai.botservice.list_publicreturns[].Fix options
is_public: true.Likely best is (a) + (b) — UI shows all your bots, with a public toggle.
Intelligence dock popup currently shows only Voice + AI Assistant — there is no Agents entry to repro this from. Either expose Agents in the Intelligence dock (also #59) or close as obsolete. Verified live via Playwright.
Fixed by
4b12947— switched both agents and intelligence service modules frombotservice_list_publictobot_list+ parallelbot_get. Newly-created agents (which defaultis_public=false) now appear in the grid. Picked option (b) from the issue.