From learning-agents
Configures .claude/settings.json permissions for LearningAgents plugin by adding Bash script execution and .deepwork/tmp file access rules. Use to enable plugin without prompts.
npx claudepluginhub unsupervisedcom/deepwork --plugin learning-agentsThis skill uses the workspace's default tool permissions.
Configure the current project's `.claude/settings.json` so the LearningAgents plugin can run without permission prompts.
Configures Claude Code permissions for safe agent autonomy: creates/merges settings.json with allow/deny rules and installs bash path-restriction hook.
Configure allow/deny/ask permission rules in .claude/settings.json for Claude Code tools like Bash(git:*), Write, Edit. Builds layered policies with glob patterns for git commands.
Configures Claude Code permissions: tool rules (allow/deny/ask), modes (plan/dontAsk/bypass), sandboxing. Use for Bash/Edit/WebFetch policies, debugging prompts, org managed settings.
Share bugs, ideas, or general feedback.
Configure the current project's .claude/settings.json so the LearningAgents plugin can run without permission prompts.
.claude/settings.jsonRead .claude/settings.json. If it does not exist, start with:
{
"permissions": {
"allow": []
}
}
Add the following entries to permissions.allow if they are not already present:
| Rule | Purpose |
|---|---|
Bash(learning_agents/scripts/*) | Allow plugin scripts to run |
Bash(bash learning_agents/scripts/*) | Allow plugin scripts invoked via bash |
Read(./.deepwork/tmp/**) | Read session transcripts and temp files |
Write(./.deepwork/tmp/**) | Write session logs and issue files |
Edit(./.deepwork/tmp/**) | Edit issue files during investigation |
Do not duplicate rules that already exist. Preserve all existing rules and formatting.
.claude/session_log_folder_info.mdCreate .claude/session_log_folder_info.md with content describing what was configured:
LearningAgents plugin setup completed.
Permissions added to .claude/settings.json:
- Bash(learning_agents/scripts/*) — plugin scripts
- Bash(bash learning_agents/scripts/*) — plugin scripts via bash
- Read(./.deepwork/tmp/**) — read session data
- Write(./.deepwork/tmp/**) — write session data
- Edit(./.deepwork/tmp/**) — edit session data
Tell the user setup is complete and they can now use /learning-agents commands.