docs: update references and plugin configurations

- Update manifest-schema.md with latest schema changes
- Refine CLAUDE.md documentation
- Update MCP-WIKIJS, PLUGIN-PMO, PLUGIN-PROJMAN references
- Fix wikijs_client.py configuration
- Update plugin configs for cmdb-assistant and projman
- Add root .mcp.json for project-level MCP configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-12 01:25:49 -05:00
parent b53aa7cb23
commit b067802da8
15 changed files with 260 additions and 230 deletions

View File

@@ -110,7 +110,7 @@ cat > ~/.config/claude/wikijs.env << 'EOF'
# Wiki.js API Configuration
WIKIJS_API_URL=http://wikijs.hotport/graphql
WIKIJS_API_TOKEN=your_api_token_here
WIKIJS_BASE_PATH=/hyper-hive-labs
WIKIJS_BASE_PATH=/your-org
EOF
chmod 600 ~/.config/claude/wikijs.env
@@ -216,7 +216,7 @@ The MCP server is referenced in plugin `.mcp.json`:
|----------|-------------|---------|
| `WIKIJS_API_URL` | Wiki.js GraphQL endpoint | `http://wiki.example.com/graphql` |
| `WIKIJS_API_TOKEN` | API authentication token (JWT) | `eyJhbGciOiJSUzI1...` |
| `WIKIJS_BASE_PATH` | Base path in Wiki.js | `/hyper-hive-labs` |
| `WIKIJS_BASE_PATH` | Base path in Wiki.js | `/your-org` |
### Optional Variables
@@ -234,7 +234,7 @@ The MCP server is referenced in plugin `.mcp.json`:
### Recommended Organization
```
/hyper-hive-labs/ # Base path
/your-org/ # Base path
├── projects/ # Project-specific
│ ├── your-project/
│ │ ├── lessons-learned/

View File

@@ -52,7 +52,7 @@ mkdir -p ~/.config/claude
cat > ~/.config/claude/wikijs.env << 'EOF'
WIKIJS_API_URL=http://wikijs.hotport/graphql
WIKIJS_API_TOKEN=your_real_token_here
WIKIJS_BASE_PATH=/hyper-hive-labs
WIKIJS_BASE_PATH=/your-org
EOF
# Run integration tests
@@ -198,7 +198,7 @@ echo '{
"success": true,
"page": {
"id": 123,
"path": "/hyper-hive-labs/projects/test-project/documentation/test-api",
"path": "/your-org/projects/test-project/documentation/test-api",
"title": "Test API Documentation"
}
}

View File

@@ -21,8 +21,8 @@ class WikiJSClient:
Args:
api_url: Wiki.js GraphQL API URL (e.g., http://wiki.example.com/graphql)
api_token: Wiki.js API token
base_path: Base path in Wiki.js (e.g., /hyper-hive-labs)
project: Project path (e.g., projects/cuisineflow) for project mode
base_path: Base path in Wiki.js (e.g., /your-org)
project: Project path (e.g., projects/my-project) for project mode
"""
self.api_url = api_url
self.api_token = api_token