Skip to content

Commit af61b0c

Browse files
committed
feat(catalog): mark tfsec deprecated, fix codex entry
tfsec: - Mark as deprecated (superseded_by: trivy) - tfsec has been merged into Trivy for IaC scanning - Add link to official migration guide codex: - Fix broken entry that pointed to non-existent repo - Was installing wrong package (comic archive server) - Now correctly points to OpenAI Codex CLI (@openai/codex) - OpenAI's open-source coding agent for terminal
1 parent f7d6603 commit af61b0c

2 files changed

Lines changed: 17 additions & 8 deletions

File tree

catalog/codex.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "codex",
33
"category": "ai",
4-
"install_method": "uv_tool",
5-
"description": "CLI tool for generating and managing code documentation",
6-
"homepage": "https://github.com/codex-cli/codex",
7-
"package_name": "codex",
8-
"python_version": "3.13",
9-
"version_command": "uv tool list | grep '^codex ' | awk '{print $2}'",
10-
"notes": "Codex is a web server app - running codex --version starts the full server. Use uv tool list for version detection."
4+
"install_method": "npm",
5+
"description": "OpenAI Codex CLI - lightweight coding agent that runs in your terminal",
6+
"homepage": "https://github.com/openai/codex",
7+
"github_repo": "openai/codex",
8+
"package_name": "@openai/codex",
9+
"binary_name": "codex",
10+
"version_command": "codex --version 2>/dev/null | head -1",
11+
"guide": {
12+
"display_name": "OpenAI Codex CLI",
13+
"install_action": "upgrade",
14+
"order": 401
15+
},
16+
"notes": "OpenAI's open-source coding agent. Requires OPENAI_API_KEY. Supports multiple AI providers including third-party models."
1117
}

catalog/tfsec.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111
"x86_64": "amd64",
1212
"aarch64": "arm64",
1313
"armv7l": "arm"
14-
}
14+
},
15+
"deprecated": true,
16+
"superseded_by": "trivy",
17+
"deprecation_message": "tfsec has been merged into Trivy. Use 'trivy config' for Terraform scanning. See migration guide: https://github.com/aquasecurity/tfsec/blob/master/tfsec-to-trivy-migration-guide.md"
1518
}

0 commit comments

Comments
 (0)