Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .codex/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Repo-local Codex defaults for this workspace.

sandbox_mode = "workspace-write"
approval_policy = "on-request"
allow_login_shell = true
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ build/
# Claude Code (commit shared settings; ignore machine-local perms + transcripts)
.claude/*
!.claude/settings.json

# Codex CLI
!.codex/
.codex/*
!.codex/config.toml
21 changes: 21 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# AGENTS.md

Repo-specific instructions for Codex CLI and other agents working in this repository.

## Scope

- This repo ships security skills, an auditor agent, and install/update scripts.
- Read `README.md` and `CLAUDE.md` before editing.
- Keep changes small and security-focused. Prefer updating the canonical skill/agent source over generated outputs.

## Operating rules

- Feature branches only; one logical change per commit.
- Keep the security auditor read-only by default.
- Preserve the SSH-only remote policy documented in `CLAUDE.md`.
- Use repo-local `.codex/config.toml` for Codex workspace defaults.

## Codex CLI notes

- Codex CLI should treat this file as the repo guidance source.
- If a change affects generated skill or agent artifacts, update the canonical source under `skills/` or `agents/`, not the downstream mirror.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,10 @@ blackterminal-security/

Uses the standard **SKILL.md / agent** package format supported by 30+ AI coding tools.

## Codex CLI

Codex CLI should read the root `AGENTS.md` and use the repo-local `.codex/config.toml` defaults in this workspace.

| Tool | Skills | Subagent | Notes |
|------|--------|----------|-------|
| Claude Code | ✅ | ✅ | Full skill + agent support |
Expand Down
Loading