Β© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
Friends of the Crustacean 🦞🀝FotC�
Friends of the Crustacean πŸ¦žπŸ€β€’10h agoβ€’
4 replies
bulldog20630405

giving agent exec perms

βœ…Solved
my agent seems to lost its exec perms when trying to do tasks
e..g
cat
grep
ls
cat
grep
ls


i have them already in the exec aproved file

this is the tools part of my openclaw.json

  "tools": {
    "profile": "messaging",
    "exec": {
      "host": "gateway",
      "security": "allowlist",
      "ask": "off"
    }
  },
  "tools": {
    "profile": "messaging",
    "exec": {
      "host": "gateway",
      "security": "allowlist",
      "ask": "off"
    }
  },


what profile do i need to set so the agent can work with running commands in the approve list?
Solution
tools.profile: "messaging"
tools.profile: "messaging"
is the reason: that profile does not include
exec
exec
(it only allows messaging + session tools). So the model never even gets the
exec
exec
tool, regardless of what’s in your exec-approvals file.

Fix options:

Option A (simplest): switch to
coding
coding

coding
coding
includes
group:runtime
group:runtime
(exec/process/bash) + fs/memory/sessions.
{
tools: {
profile: "coding",
exec: { host: "gateway", security: "allowlist", ask: "off" }
}
}
{
tools: {
profile: "coding",
exec: { host: "gateway", security: "allowlist", ask: "off" }
}
}


Option B: keep
messaging
messaging
, but explicitly allow runtime tools

Jump to solution
Friends of the Crustacean 🦞🀝 banner
Friends of the Crustacean 🦞🀝Join
The AI that actually does things. Emails, calendar, home automation - all from your favorite chat app. New shell, ready to help. The lobster way.
130,529Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements
Recent Announcements
Krill 🦐

## Freshbits β€” macOS power-up ### Fixes - [#39516](https://github.com/openclaw/openclaw/pull/39516) [d15b6af](https://github.com/openclaw/openclaw/commit/d15b6af77b49833cede844b88988d13a3715ee01) fix: land contributor PR #39516 from @Imhermes1 Stats: +1202 / -64 (files changed: 22)

Krill 🦐 · 1h ago

Krill 🦐

Stats: +442 / -147 (files changed: 71)

Krill 🦐 · 2h ago

Krill 🦐

## Freshbits β€” release prep + Gemini tweaks ### Fixes - [#39508](https://github.com/openclaw/openclaw/pull/39508) [c381034](https://github.com/openclaw/openclaw/commit/c3810346f) CLI: avoid false update restart failures without listener attribution - [e0f80cf](https://github.com/openclaw/openclaw/commit/e0f80cf0e) fix(ui): align control-ui device auth token signing - [06ffef8](https://github.com/openclaw/openclaw/commit/06ffef846) fix(ci): repair zalouser CI failures ### Features - [59102a1](https://github.com/openclaw/openclaw/commit/59102a1ff) fix: add gemini 3.1 flash-lite support - [5d22bd0](https://github.com/openclaw/openclaw/commit/5d22bd029) fix: add google flash-lite forward compat ### Chore - [0521784](https://github.com/openclaw/openclaw/commit/05217845a) build: bump version to 2026.3.8 - [3896471](https://github.com/openclaw/openclaw/commit/389647157) build: update stable appcast release URL - [c217237](https://github.com/openclaw/openclaw/commit/c217237a3) style(daemon-cli): format lifecycle test - [42a1394](https://github.com/openclaw/openclaw/commit/42a1394c5) build: prepare 2026.3.7 release

Krill 🦐 · 2h ago

Similar Threads

latest updated broke my exec perms
Friends of the Crustacean 🦞🀝FotC�Friends of the Crustacean 🦞🀝 / help
5d ago
Exec denied for Agent
Friends of the Crustacean 🦞🀝FotC�Friends of the Crustacean 🦞🀝 / help
2mo ago
Agent exec shell hangs - Need Help!!!
Friends of the Crustacean 🦞🀝FotC�Friends of the Crustacean 🦞🀝 / help
2d ago
Agent cannot use tool or exec
Friends of the Crustacean 🦞🀝FotC�Friends of the Crustacean 🦞🀝 / help
2d ago