Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Model Context Protocol server for AI assistant integration:

#### Portable Package Format (`semanticwiki pack/unpack`)
Bundle wikis with RAG indexes for sharing:
- `.archiwiki` compressed format with manifest
- `.semantics` compressed format with manifest
- Includes wiki content + embeddings + BM25 index
- Extract wiki-only or full package

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ Create portable wiki packages for sharing:

```bash
# Create package (includes wiki + RAG index)
semanticwiki pack -w ./wiki -o ./my-wiki.archiwiki
semanticwiki pack -w ./wiki -o ./my-wiki.semantics

# Extract package
semanticwiki unpack -p ./my-wiki.archiwiki -o ./extracted
semanticwiki unpack -p ./my-wiki.semantics -o ./extracted

# Extract wiki only (no RAG index)
semanticwiki unpack -p ./my-wiki.archiwiki -o ./extracted --wiki-only
semanticwiki unpack -p ./my-wiki.semantics -o ./extracted --wiki-only
```

### Large Codebase Options
Expand Down Expand Up @@ -287,7 +287,7 @@ semanticwiki generate -r ./my-project --max-turns 50
| Option | Description | Default |
|--------|-------------|---------|
| `-w, --wiki <dir>` | Wiki directory (required) | - |
| `-o, --output <file>` | Output package path | `<name>.archiwiki` |
| `-o, --output <file>` | Output package path | `<name>.semantics` |
| `-n, --name <name>` | Package name | wiki folder name |
| `--no-rag` | Exclude RAG index | - |

Expand Down
Loading