Files
claude-code-conduit/package.json
mikael-lovqvists-claude-agent dd7743501a Add runtime policy overrides and TUI policy management view
- server/policy_overrides.mjs: persistent group/action override store
- Group toggle: disabling a group forces all its actions to auto-deny without
  touching individual overrides; re-enabling restores them intact
- Action overrides: cycle auto-accept/queue/auto-deny/clear per action
- Effective policy resolution in index.mjs: group > action override > hardcoded default
- auth.mjs: add check_can_manage_policies (requires canApprove.length > 0)
- Three new endpoints: GET /policies, POST /policies/group/:group, POST /policies/action/:action
- client/conduit.mjs: get_policies, set_group_policy, set_action_policy
- ccc-queue.mjs: policy view (Tab to switch); group/action panel with space/e/←/→
- actions.mjs: group fields on desktop/email/calendar actions; list-actions includes group
- config.example.json: add policy_overrides key
- Bump version to 1.3.0

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-21 16:01:45 +00:00

24 lines
614 B
JSON

{
"name": "claude-code-conduit",
"version": "1.3.0",
"description": "A supervised action bridge between Claude Code and the host system",
"type": "module",
"scripts": {
"server": "node server/index.mjs",
"client": "node client/index.mjs"
},
"bin": {
"ccc-server": "bin/ccc-server.mjs",
"ccc-client": "bin/ccc-client.mjs",
"ccc-queue": "bin/ccc-queue.mjs",
"ccc-keygen": "bin/ccc-keygen.mjs",
"ccc-gcal-auth": "bin/ccc-gcal-auth.mjs"
},
"dependencies": {
"blessed": "^0.1.81",
"express": "^5.2.1",
"googleapis": "^144.0.0",
"nodemailer": "^8.0.2"
}
}