@s1m0ne/codex-cli
v0.0.1
Published
Scaffold and configure Codex-enabled projects via interactive CLI.
Maintainers
Readme
@s1m0ne/codex-cli (prototype)
@s1m0ne/codex-cli is an experimental initializer for Codex-enabled projects. It scaffolds baseline docs and MCP-aware configuration so agents can start working immediately.
Installation
npm install -g @s1m0ne/codex-cli # global install
# or
npx @s1m0ne/codex-cli@latest --help # on-demand execution此包使用作用域名称
@s1m0ne/codex-cli。请确认你对@s1m0nescope 拥有发布权限(参见npm access或npm team命令)。
Usage
codex-cli init [directory] [--dry-run]directorydefaults to the current working directory.--dry-runprints the planned actions without touching the filesystem.
Running init today writes placeholder setup.md / AGENTS.md files when they are missing. The real implementation will expand these steps in line with setup.md.
Local development
npm install
npm run build # compile TypeScript to dist/
node dist/index.js --helpYou can iterate by running npm run dev (TypeScript watch mode).
Packaging & publish workflow
- Update version:
npm version <patch|minor|major>(creates a Git tag). - Build artifacts:
npm run build(also runs via thepreparehook). - Verify the tarball locally:
npm pack npx --yes @s1m0ne/codex-cli@file:./s1m0ne-codex-cli-0.0.1.tgz --help - Publish (requires npm credentials):
npm publish --access public(作用域包默认受限访问,需要显式公开)。
The npm pack + npx round-trip is also useful in CI to validate that consumers can execute the package before making it public.
Project roadmap
See setup.md for the full feature plan, including MCP integrations, template orchestration, logging, and release automation.
