Export agentConfigurationDoc from all adapters for LLM reflection. Inject PAPERCLIP_APPROVAL_ID, PAPERCLIP_APPROVAL_STATUS, and PAPERCLIP_LINKED_ISSUE_IDS into local adapter environments. Update SKILL.md with approval handling procedure, issue-approval linking, and config revision documentation. Add new paperclip-create-agent skill for CEO-driven agent hiring workflows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
1017 B
TypeScript
29 lines
1017 B
TypeScript
export const type = "codex_local";
|
|
export const label = "Codex (local)";
|
|
|
|
export const models = [
|
|
{ id: "o4-mini", label: "o4-mini" },
|
|
{ id: "o3", label: "o3" },
|
|
{ id: "codex-mini-latest", label: "Codex Mini" },
|
|
];
|
|
|
|
export const agentConfigurationDoc = `# codex_local agent configuration
|
|
|
|
Adapter: codex_local
|
|
|
|
Core fields:
|
|
- cwd (string, required): absolute working directory for the agent process
|
|
- model (string, optional): Codex model id
|
|
- promptTemplate (string, optional): run prompt template
|
|
- bootstrapPromptTemplate (string, optional): first-run prompt template
|
|
- search (boolean, optional): run codex with --search
|
|
- dangerouslyBypassApprovalsAndSandbox (boolean, optional): run with bypass flag
|
|
- command (string, optional): defaults to "codex"
|
|
- extraArgs (string[], optional): additional CLI args
|
|
- env (object, optional): KEY=VALUE environment variables
|
|
|
|
Operational fields:
|
|
- timeoutSec (number, optional): run timeout in seconds
|
|
- graceSec (number, optional): SIGTERM grace period in seconds
|
|
`;
|