Skip to content

Commit 5daa6e6

Browse files
drknowhowclaude
andcommitted
Comprehensive docs update: fix chapter numbering, add new components and features
- Fix guide.html chapter numbering for chapters 11-15 (Video, UI Reference, MCP, Architecture, Troubleshooting) — resolves duplicate section IDs and broken sidebar navigation links - Add NoteModule, NoteEditor, ProjectModule, ResourceModule to project structure documentation - Add Notes, Resources, Projects tabs to UI Reference table - Add unlimitedStorage permission to Chrome APIs docs and README - Update meta descriptions to include notes and workspaces - Include all pending code changes: new note/project/resource modules, preview system, launcher config, and MCP server updates Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ce0b579 commit 5daa6e6

31 files changed

Lines changed: 3817 additions & 421 deletions

.mcp.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@
22
"mcpServers": {
33
"sentinel": {
44
"command": "python",
5-
"args": ["mcp-server/sentinel_mcp.py"],
5+
"args": [
6+
"mcp-server/sentinel_mcp.py"
7+
],
68
"cwd": "U:/1. Projects/Sentinel"
9+
},
10+
"c3": {
11+
"command": "python",
12+
"args": [
13+
"U:/1. Projects/Claude Code Companion (C3)/claude-companion - v2/cli/mcp_server.py",
14+
"--project",
15+
"."
16+
]
717
}
818
}
919
}

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p align="center">
88
<strong>Web Application Tester & Guide Creator</strong><br>
9-
Record web interactions, capture bugs and feature requests, and generate step-by-step visual guides — manually or fully automated via 50+ MCP tools.
9+
Record web interactions, capture bugs and feature requests, manage notes and workspaces, and generate step-by-step visual guides — manually or fully automated via 50+ MCP tools.
1010
</p>
1111

1212
<p align="center">
@@ -86,7 +86,7 @@ Sentinel/
8686
│ ├── content.ts # Content script — recording, playback, inspection, element querying
8787
│ ├── App.tsx # Main side panel UI
8888
│ ├── EditorApp.tsx # Guide editor (opens in new tab)
89-
│ ├── components/ # React components (Header, StepList, ErrorFeed, IssueList, AiLog, etc.)
89+
│ ├── components/ # React components (Header, StepList, NoteModule, ProjectModule, ResourceModule, etc.)
9090
│ ├── hooks/ # Custom hooks (state sync, video recording, guide editor)
9191
│ └── lib/ # Utilities (storage, HTML/report generation, message types)
9292
├── mcp-server/
@@ -113,6 +113,7 @@ Sentinel/
113113
| `tabCapture` | Record video of the active browser tab |
114114
| `alarms` | Schedule periodic tasks (connection health checks) |
115115
| `nativeMessaging` | Communicate with the native launcher to start/stop the MCP server |
116+
| `unlimitedStorage` | Remove the 10 MB storage quota for sessions, screenshots, and projects |
116117

117118
---
118119

0 commit comments

Comments
 (0)