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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ This tool teaches your AI coding assistants how to use these CLI tools by inject
| ---------------- | --------------------- |
| Claude Code | `~/.claude/CLAUDE.md` |
| Gemini CLI | `~/.gemini/GEMINI.md` |
| OpenAI Codex CLI | `~/.codex/CODEX.md` |
| OpenAI Codex CLI | `~/.codex/AGENTS.md` |

### How It Works

Expand Down
4 changes: 2 additions & 2 deletions lib/llm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const GLOBAL_LLM_TOOLS = [
{
name: 'OpenAI Codex CLI',
dir: '.codex',
file: 'CODEX.md',
file: 'AGENTS.md',
},
];

Expand Down Expand Up @@ -1115,7 +1115,7 @@ const injectToLlmConfig = (tool) => {
const SUPPORTED_TOOLS = [
{ name: 'Claude Code', config: '~/.claude/CLAUDE.md' },
{ name: 'Gemini CLI', config: '~/.gemini/GEMINI.md' },
{ name: 'OpenAI Codex CLI', config: '~/.codex/CODEX.md' },
{ name: 'OpenAI Codex CLI', config: '~/.codex/AGENTS.md' },
];

/**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enthus-appdev/llm-cli-setup",
"version": "1.7.0",
"version": "1.8.0",
"description": "CLI tools setup with LLM integration - installs and configures sqlcmd, gh, atl, n8nctl, grafanactl, logcli, m365, esq, discordctl, playwright, and hcloud with Claude Code, Gemini CLI, and Codex support",
"type": "module",
"main": "./lib/index.js",
Expand Down