logic-cli
v0.0.2
Published
logic.dev CLI – scaffold your Logic.dev AI team‑collaboration project config and folder structure
Readme
logic.dev
logic.dev is the official CLI for the Logic.dev platform—an AI‑powered, team‑driven full‑stack development workspace.
Use it to scaffold your project’s configuration and folder structure in one go.
Features
logic.dev init [targetPath]- Creates a
logic.config.mjs(if missing) with your folder blueprint. - Generates all folders & sub‑folders as defined in the config.
- Creates a
- Zero‑touch scaffolding
Re‑runinitanytime; it will skip existing files/folders.
Installation
# via npm
npm install -g logic.dev
# via bun
bun install -g logic.devOr run directly without global install:
# via npm or bun
npx logic.dev init
bunx logic.dev initUsage
# 1) Initialize config + folders in current dir
logic.dev init
# 2) Initialize under a sub‑directory
logic.dev init myProject
# 3) Just regenerate folders after editing your config
logic.dev setup-foldersDevelopment & Testing
# Install dependencies
npm install
# Run tests
npm test
# Lint commits (Conventional Commits)
npm run lint:commits