@oiml/cli
v0.1.12
Published
OIML CLI for initializing and managing OIML projects
Downloads
14
Readme
@oiml/cli
OIML CLI for initializing and managing OIML projects.
Installation
npm install -g @oiml/cliOr use with npx (no installation required):
npx @oiml/cli initUsage
Initialize a new OIML project
oiml initOr with npx:
npx @oiml/cli initThis command will:
- Detect your project type (Next.js, Express, etc.)
- Create a
.oimldirectory - Generate a
project.yamlconfiguration file - Create an
intentsdirectory
Note: The OIML Agents implementation guide (AGENTS.md) is now available via the MCP tool get_agents_guide instead of being copied to each project. Agents can fetch it when needed.
Options
-y, --yes: Skip prompts and use defaults
Create a new intent
oiml create INT-123This command will:
- Create a folder
.oiml/intents/INT-123/ - Generate an
intent.yamlfile inside the folder - Include default OIML structure with ai_context and provenance
Development
# Build the CLI
pnpm build
# Development mode with watch
pnpm dev