@ui8kit/uxdx
v0.1.5
Published
CLI to accumulate operator and developer experience packs
Maintainers
Readme
UXDX
CLI for creating operator files and installing SDLC harness packs.
Package: @ui8kit/uxdx
Source: github.com/ui8kit/uxdx
Quick start
Create the operator layout in the current directory:
npx @ui8kit/uxdx@latest -pInstall one SDLC harness level:
npx @ui8kit/uxdx@latest -s --level lightYou can use bunx instead of npx:
bunx @ui8kit/uxdx -pDo not place -- after the package name. If npx prints a punycode
deprecation warning, it comes from npm and does not prevent UXDX from running.
Project layout
-p is an alias for project. It creates or updates:
README.md.gitignore.cursorignore.project/README.md.manual/.gitkeepwhen.manual/does not exist
Existing content is preserved unless --force is used. Operator notes under
.manual/ remain ignored by Git.
npx @ui8kit/uxdx@latest -p --dir ./my-repo
npx @ui8kit/uxdx@latest -p --rulesSDLC harness
-s is an alias for sdlc. --level is required:
npx @ui8kit/uxdx@latest -s --level light
npx @ui8kit/uxdx@latest -s --level core
npx @ui8kit/uxdx@latest -s --level fullThe command copies one pack into .sdlc/ and runs its installer. Use
--no-install to copy only, or --dir <path> to target another repository.
Do not combine multiple levels in one repository.
Help
npx @ui8kit/uxdx@latest --help
npx @ui8kit/uxdx@latest -p --help
npx @ui8kit/uxdx@latest -s --helpDevelopment
bun install
bun test
bun run build
bun run uxdx -- --helpThe separator -- is required only after bun run uxdx.
