@marianditt/graphite
v0.3.0
Published
Graphite CLI: compiled knowledge graph tooling
Maintainers
Readme
Graphite
Graphite is a compiled knowledge graph CLI for software engineering workflows.
CLI usage
After installation, use:
graphite render
graphite validate graph
graphite context compiler --phase implementGlobal install with npm
Graphite can be installed globally via npm and exposes a graphite command.
Prerequisites
- Rust toolchain installed (
cargoavailable inPATH) - Node.js 18+
Install globally
npm i -g @marianditt/graphiteThe package builds graphite-cli during postinstall and wires a global
graphite executable.
Local smoke test for the npm wrapper
From this repo:
node npm/scripts/postinstall.mjs
node npm/bin/graphite.mjs --helpPublishing to npm
Publishing requires your npm credentials and should be run by you.
- Log in:
npm login- Verify package contents:
npm pack --dry-run- Publish:
npm publish --access publicIf you publish under a different scope, update name in package.json and
use that package name for installs.
