Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/cli/agent_profiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,17 @@ static bool render_profile_text(profile_buffer_t *buffer, cbm_graph_profile_dial
}
return true;
case CBM_GRAPH_DIALECT_OPENCODE:
if (!profile_buffer_append(buffer, "---\ndescription: ") ||
!profile_buffer_append(buffer, description) ||
!profile_buffer_append(
buffer, "\nmode: subagent\npermission:\n \"*\": deny\n read: allow\n grep: "
"allow\n glob: allow\n tool_search: allow\n tool_search_regex: "
"allow\n") ||
(direct && !append_permission_mcp_tools(buffer, dialect, tier)) ||
!profile_buffer_append(buffer, "---\n") || !profile_buffer_append(buffer, prompt)) {
return false;
}
return true;
case CBM_GRAPH_DIALECT_KILO:
if (!profile_buffer_append(buffer, "---\ndescription: ") ||
!profile_buffer_append(buffer, description) ||
Expand Down
2 changes: 1 addition & 1 deletion src/cli/client_adapter.c
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ char *cbm_client_adapter_opencode(const char *binary_path) {
" seen.add(sid);\n"
" pieces.push(await lifecycle());\n"
" }\n"
" const args = output?.args ?? {};\n"
" const args = input?.args ?? {};\n"
" const search =\n"
" input?.tool === 'grep' ? 'Grep' : input?.tool === 'glob' ? 'Glob' : null;\n"
" if (search) {\n"
Expand Down
3 changes: 3 additions & 0 deletions tests/test_agent_clients.c
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,9 @@ TEST(client_adapter_opencode_sends_the_required_hook_event) {
ASSERT_NOT_NULL(js);
ASSERT_NOT_NULL(strstr(js, "hook_event_name: 'PreToolUse'"));
ASSERT_NOT_NULL(strstr(js, "tool.execute.after"));
ASSERT_NOT_NULL(strstr(js, "const args = input?.args ?? {};"));
ASSERT_NOT_NULL(strstr(js, "tool_input: args"));
ASSERT_NULL(strstr(js, "output?.args"));
/* OpenCode reaches the tools over MCP already; this adapter must not
* register any, or we reintroduce the second tool surface. */
ASSERT_NULL(strstr(js, "registerTool"));
Expand Down
19 changes: 19 additions & 0 deletions tests/test_agent_profiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,24 @@ TEST(agent_profiles_omp_direct_has_prefixed_tools_and_handoff_excludes_mcp) {
PASS();
}

TEST(agent_profiles_opencode_allows_tool_search_and_subagent_permissions) {
char *direct = cbm_render_graph_profile(CBM_GRAPH_DIALECT_OPENCODE, CBM_GRAPH_TIER_VERIFY,
CBM_GRAPH_ACCESS_DIRECT, NULL);
ASSERT_NOT_NULL(direct);
ASSERT_NOT_NULL(strstr(direct, "mode: subagent\n"));
ASSERT_NOT_NULL(strstr(direct, " \"*\": deny\n"));
ASSERT_NOT_NULL(strstr(direct, " read: allow\n"));
ASSERT_NOT_NULL(strstr(direct, " grep: allow\n"));
ASSERT_NOT_NULL(strstr(direct, " glob: allow\n"));
ASSERT_NOT_NULL(strstr(direct, " tool_search: allow\n"));
ASSERT_NOT_NULL(strstr(direct, " tool_search_regex: allow\n"));
ASSERT_NOT_NULL(strstr(direct, " \"codebase-memory-mcp_search_graph\": allow\n"));
ASSERT_NOT_NULL(strstr(direct, " \"codebase-memory-mcp_check_index_coverage\": allow\n"));
ASSERT_NULL(strstr(direct, "delete_project"));
free(direct);
PASS();
}

SUITE(agent_profiles) {
RUN_TEST(agent_profiles_stable_tier_identity);
RUN_TEST(agent_profiles_direct_dialects_are_coverage_aware_and_read_only);
Expand All @@ -371,6 +389,7 @@ SUITE(agent_profiles) {
RUN_TEST(agent_profiles_codex_declares_transport_and_escapes_binary_path);
RUN_TEST(agent_profiles_vibe_uses_matching_prompt_identifier_and_contract);
RUN_TEST(agent_profiles_omp_direct_has_prefixed_tools_and_handoff_excludes_mcp);
RUN_TEST(agent_profiles_opencode_allows_tool_search_and_subagent_permissions);
RUN_TEST(agent_profiles_grok_uses_dispatcher_ids_and_named_inheritance);
RUN_TEST(agent_profiles_render_deterministically_and_reject_invalid_inputs);
}
Loading