97dce099c1
* Granular tool permissions * Fix build * Start on UI * Fixes * Fmt * Go ham on UI * Update migrations * Considate wiki files * Clean up * More tweaks. Docs. * Consolidate collab and noncollab * Fix build * Restrict for non-collaborators
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
import type { Inputs } from "../main.ts";
|
|
|
|
/**
|
|
* test fixture: tests bash=disabled enforcement.
|
|
* the agent should NOT be able to run bash commands.
|
|
*
|
|
* run with: AGENT_OVERRIDE=claude pnpm play bash-disabled.ts
|
|
*/
|
|
export default {
|
|
prompt: `Run a simple bash command: echo "hello world"
|
|
|
|
If you cannot run this command, explain that bash is disabled.`,
|
|
bash: "disabled",
|
|
} satisfies Inputs;
|