docs: fix documentation inconsistencies and add missing test flags #6288
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
npm installtobun addin packages/server/README.md (project uses bun exclusively)--portand--skip-type-checkflags to ElizaOS test command documentation in CLAUDE.mdChanges
packages/server/README.md: Fix package manager commandpackages/core/README.md: Fix dead link to non-existent fileCLAUDE.md: Document missing CLI flagsTest plan
🤖 Generated with Claude Code
Note
Documentation-only updates across project docs.
--portand--skip-type-checkflags toelizaos testcommand inCLAUDE.mdBUILD_SYSTEM.mdreference with a clear note that conditional exports select the correct build automaticallybunby replacingnpm installwithbun addfor@elizaos/serverWritten by Cursor Bugbot for commit 856a405. This will update automatically on new commits. Configure here.
Greptile Summary
Important Files Changed
packages/core/src/services/default-message-service.tspackages/plugin-bootstrap/src/providers/actions.tsactionsWithParamsfor enhanced action context in multi-step workflowspackages/core/src/prompts.tsactionsWithParamspackages/plugin-bootstrap/src/__tests__/multi-step.test.tsConfidence score: 4/5
default-message-service.tsfile which contains substantial changes to core message processing logic including retry mechanisms and streaming improvementsSequence Diagram
sequenceDiagram participant User participant CLI as elizaos CLI participant TestRunner as ElizaOS TestRunner participant ComponentTests as Component Tests participant E2ETests as E2E Tests participant Agent as Agent Runtime User->>CLI: "elizaos test [path]" CLI->>CLI: "Detect project type" CLI->>CLI: "Parse command options (--skip-build, --port, etc.)" alt Component Tests User->>CLI: "elizaos test -t component" CLI->>ComponentTests: "Run bun test" ComponentTests->>ComponentTests: "Test individual modules" ComponentTests-->>CLI: "Test results" else E2E Tests User->>CLI: "elizaos test -t e2e" CLI->>TestRunner: "Initialize ElizaOS TestRunner" TestRunner->>Agent: "Start agent runtime" Agent->>Agent: "Initialize server, database, plugins" TestRunner->>TestRunner: "Run integration tests" TestRunner-->>CLI: "Test results" CLI->>Agent: "Stop agent runtime" else All Tests (Default) CLI->>ComponentTests: "Run component tests" ComponentTests-->>CLI: "Component results" CLI->>TestRunner: "Run E2E tests" TestRunner->>Agent: "Start agent runtime" TestRunner->>TestRunner: "Run integration tests" TestRunner-->>CLI: "E2E results" CLI->>Agent: "Stop agent runtime" end CLI-->>User: "Test results and exit code"Context used:
dashboard- CLAUDE.md (source)dashboard- .cursorrules (source)