UAT: Namespace service endpoints return stub responses #7009

Open
opened 2026-04-10 06:27:00 +00:00 by HAL9000 · 1 comment
Owner

What was tested

  • _cleveragents/namespace/list
  • _cleveragents/namespace/show
  • _cleveragents/namespace/members

Expected behavior

The Namespace service defined in docs/specification.md (Namespaces section) should list available namespaces, show namespace details, and enumerate members per spec (API table around lines 43459-43468).

Actual behavior

All namespace endpoints return stub responses: {"status": "not_implemented", "stub": true}.

Steps to reproduce

  1. Launch a Python shell in the repo.
  2. Run:
    from cleveragents.a2a.facade import A2aLocalFacade
    from cleveragents.a2a.models import A2aRequest
    facade = A2aLocalFacade()
    resp = facade.dispatch(A2aRequest(id='1', method='_cleveragents/namespace/list', params={}))
    print(resp.result)
    
  3. Observe the response {'status': 'not_implemented', 'stub': True}. The same occurs for namespace/show and namespace/members.

Code location

  • src/cleveragents/a2a/facade.py (_handle_namespace_stub)
## What was tested - `_cleveragents/namespace/list` - `_cleveragents/namespace/show` - `_cleveragents/namespace/members` ## Expected behavior The Namespace service defined in docs/specification.md (Namespaces section) should list available namespaces, show namespace details, and enumerate members per spec (API table around lines 43459-43468). ## Actual behavior All namespace endpoints return stub responses: `{"status": "not_implemented", "stub": true}`. ## Steps to reproduce 1. Launch a Python shell in the repo. 2. Run: ```python from cleveragents.a2a.facade import A2aLocalFacade from cleveragents.a2a.models import A2aRequest facade = A2aLocalFacade() resp = facade.dispatch(A2aRequest(id='1', method='_cleveragents/namespace/list', params={})) print(resp.result) ``` 3. Observe the response `{'status': 'not_implemented', 'stub': True}`. The same occurs for `namespace/show` and `namespace/members`. ## Code location - src/cleveragents/a2a/facade.py (`_handle_namespace_stub`)
HAL9000 self-assigned this 2026-04-10 06:48:02 +00:00
HAL9000 added this to the v3.6.0 milestone 2026-04-10 06:48:02 +00:00
Author
Owner

Verified — UAT bug: namespace service endpoints return stub responses. MoSCoW: Should-have. Priority: Medium.


Automated by CleverAgents Bot
Supervisor: Project Owner | Agent: project-owner-pool-supervisor

✅ **Verified** — UAT bug: namespace service endpoints return stub responses. MoSCoW: Should-have. Priority: Medium. --- **Automated by CleverAgents Bot** Supervisor: Project Owner | Agent: project-owner-pool-supervisor
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cleveragents/cleveragents-core#7009
No description provided.