CLI Documentation ID Format Update
Issue
PR feedback indicates thatplanId and agentId examples in documentation use incorrect format.
Current Format (Incorrect)
Correct Format (BigInt)
Plan IDs and Agent IDs are returned as large numeric strings (BigInt format):Files to Update
- cli/docs/getting-started.md
- cli/docs/plans.md
- cli/docs/agents.md
- cli/docs/purchases.md
- cli/docs/querying.md
- cli/docs/other-commands.md
- cli/docs/README.md
- cli/docs/TESTING_NPM.md
Example Replacements
Plans Documentation
Before:Agents Documentation
Before:Variable Assignments
Before:Implementation Strategy
- Replace all
did:nvm:abc123and similar patterns with numeric BigInt strings - Use distinct numbers for different entities to avoid confusion
- Keep examples consistent across documentation
- Maintain quotes around numeric strings in shell examples
Standard Example IDs
- Basic plan:
"123456789012345678" - Pro plan:
"234567890123456789" - Enterprise plan:
"345678901234567890" - Trial plan:
"456789012345678901" - Agent 1:
"987654321098765432" - Agent 2:
"876543210987654321" - Agent 3:
"765432109876543210"