docs: update documentation for accurate v3.9.0 API examples and technical claims

- Fix all API examples to use proper enum syntax (NounType.Concept vs "concept")
- Correct noun/verb type counts (31 noun types × 40 verb types = 1,240 combinations)
- Update package references from 'brainy' to '@soulcraft/brainy'
- Standardize version references to be version-agnostic
- Ensure all examples match actual v3.9.0 implementation
- Add proper TypeScript imports throughout documentation
This commit is contained in:
David Snelling 2025-09-22 16:19:27 -07:00
parent 6113b39109
commit 8508cfc97d
5 changed files with 43 additions and 42 deletions

View file

@ -5,7 +5,7 @@ This guide will help you get up and running with Brainy, the multi-dimensional A
## Installation
```bash
npm install brainy
npm install @soulcraft/brainy
```
## Basic Setup
@ -13,7 +13,7 @@ npm install brainy
### Simple Initialization
```typescript
import { BrainyData } from 'brainy'
import { BrainyData } from '@soulcraft/brainy'
// Create a new Brainy instance with defaults
const brain = new BrainyData()