Restructure KnoLo into npm workspace monorepo and add package scaffolds#22
Merged
HiveForensicsAI merged 9 commits intomainfrom Feb 21, 2026
Merged
Conversation
…-cli-for-knolo feat(cli): productize KnoLo CLI with config-driven workflow
…pp-scaffolder-and-next.js-template Add create-knolo-app scaffolder with minimal Next.js starter and 5-minute quickstart
…n-and-llamaindex-adapters Add LangChain & LlamaIndex adapters, runnable examples, and CI smoke tests
…ers-for-create-knolo-app Harden packaging & smoke tests; clarify adapter compatibility wording
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
workspaces: ["packages/*"]) and add root scriptsbuild,test,format, andformat:checkto run across workspaces.packages/core, update itspackage.jsonto@knolo/core(keep version0.3.1), and ensuredistoutput and tests remain intact.@knolo/cli,@knolo/langchain, and@knolo/llamaindexwith placeholdersrc/index.ts, minimalpackage.jsonentries, and no-opbuild/testscripts.packages/cli/bin/knolo.mjsand update its resolution logic to prefer@knolo/core(with a fallback to the localpackages/core/dist); update core test references to the new CLI path.examples/nextjs-rag-chat,examples/node-cli-rag, andtemplates/create-knolo-app, and refresh the top ofREADME.mdto document the new structure and clearly mark implemented vs coming-soon items.Testing
npm installat the repo root and the install completed successfully.npm run buildat the repo root and all workspacebuildscripts executed successfully (core compiled viatsc).npm run testat the repo root and core tests passed after fixing CLI resolution inpackages/cli/bin/knolo.mjsand updatingpackages/core/scripts/test.mjsto call the new CLI path; finaltestrun succeeded.node -e "import('@knolo/core').then(()=>console.log('ok'))"printsok, confirming ESM workspace import resolution works.Codex Task