docs: scope npx invocations under @mandarnilange/* across all docs#6
Merged
Conversation
Cold-start `npx agentforge X` commands no longer resolve — the unscoped `agentforge` package name does not exist on npm (rejected by similarity policy in rc.0). Same for `npx agentforge-core` after the rc.2 rename. Without prior `npm install`, `npx` would fail with "package not found". Replaces every `npx agentforge ...` with `npx @mandarnilange/agentforge ...`, and every `npx agentforge-core ...` with `npx @mandarnilange/agentforge-core ...`. The scoped form pulls the package from npm and runs the registered bin (`agentforge` / `agentforge-core`), so commands now work copy-paste from a clean shell. Also fixes a stale parenthetical in docs/getting-started.md that recommended `npx agentforge` for the core package — the from-source fallback for core is `npx tsx packages/core/src/cli/index.ts`. Touches: README, docs/getting-started, docs/testing-guide, packages/core/README, packages/platform/README.
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.
Summary
npx agentforge Xcommands no longer resolve from a clean shell — the unscopedagentforgepackage name does not exist on npm (rejected by similarity policy in rc.0). Same fornpx agentforge-coreafter the rc.2 rename.npm install,npxwould fail with "package not found".What changed
npx agentforge ...→npx @mandarnilange/agentforge ...npx agentforge-core ...→npx @mandarnilange/agentforge-core ...docs/getting-started.mdthat recommendednpx agentforgefor the core package — the from-source fallback for core isnpx tsx packages/core/src/cli/index.ts.Files
README.mddocs/getting-started.mddocs/testing-guide.mdpackages/core/README.mdpackages/platform/README.mdTest plan
npx biome check .— cleannpx agentforge/npx agentforge-corereferences