@techwavedev/agi-agent-kit 1.1.7 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +142 -1
- package/README.md +195 -15
- package/bin/init.js +154 -5
- package/package.json +6 -3
- package/templates/base/AGENTS.md +54 -23
- package/templates/base/README.md +327 -0
- package/templates/base/directives/memory_integration.md +95 -0
- package/templates/base/execution/memory_manager.py +309 -0
- package/templates/base/execution/session_boot.py +218 -0
- package/templates/base/execution/session_init.py +320 -0
- package/templates/base/requirements.txt +45 -6
- package/templates/base/skill-creator/SKILL_skillcreator.md +3 -3
- package/templates/skills/knowledge/design-md/README.md +0 -0
- package/templates/skills/knowledge/design-md/SKILL.md +0 -0
- package/templates/skills/knowledge/design-md/examples/DESIGN.md +0 -0
- package/templates/skills/knowledge/intelligent-routing/SKILL.md +237 -164
- package/templates/skills/knowledge/notebooklm-rag/SKILL.md +216 -0
- package/templates/skills/knowledge/notebooklm-rag/requirements.txt +9 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/ask_question.py +237 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/auth_manager.py +307 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/browser_utils.py +101 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/cleanup_manager.py +87 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/config.py +45 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/notebook_manager.py +334 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/run.py +92 -0
- package/templates/skills/knowledge/notebooklm-rag/scripts/setup_environment.py +68 -0
- package/templates/skills/knowledge/parallel-agents/SKILL.md +345 -73
- package/templates/skills/knowledge/plugin-discovery/SKILL.md +581 -0
- package/templates/skills/knowledge/plugin-discovery/scripts/platform_setup.py +1083 -0
- package/templates/skills/knowledge/react-components/README.md +0 -0
- package/templates/skills/knowledge/react-components/SKILL.md +0 -0
- package/templates/skills/knowledge/react-components/examples/gold-standard-card.tsx +0 -0
- package/templates/skills/knowledge/react-components/package-lock.json +0 -0
- package/templates/skills/knowledge/react-components/package.json +0 -0
- package/templates/skills/knowledge/react-components/resources/architecture-checklist.md +0 -0
- package/templates/skills/knowledge/react-components/resources/component-template.tsx +0 -0
- package/templates/skills/knowledge/react-components/resources/stitch-api-reference.md +0 -0
- package/templates/skills/knowledge/react-components/resources/style-guide.json +0 -0
- package/templates/skills/knowledge/react-components/scripts/validate.js +0 -0
- package/templates/skills/knowledge/self-update/SKILL.md +0 -0
- package/templates/skills/knowledge/self-update/scripts/update_kit.py +0 -0
- package/templates/skills/knowledge/stitch-loop/README.md +0 -0
- package/templates/skills/knowledge/stitch-loop/SKILL.md +3 -3
- package/templates/skills/knowledge/stitch-loop/examples/SITE.md +0 -0
- package/templates/skills/knowledge/stitch-loop/examples/next-prompt.md +0 -0
- package/templates/skills/knowledge/stitch-loop/resources/baton-schema.md +0 -0
- package/templates/skills/knowledge/stitch-loop/resources/site-template.md +0 -0
- package/templates/skills/stitch-loop/SKILL.md +3 -3
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-314.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-314.pyc +0 -0
- package/templates/skills/knowledge/SKILLS_CATALOG.md +0 -796
- package/templates/skills/knowledge/jira/scripts/__pycache__/jira_client.cpython-314.pyc +0 -0
- package/templates/skills/knowledge/notebooklm-mcp/SKILL.md +0 -71
- package/templates/skills/knowledge/notebooklm-mcp/assets/example_asset.txt +0 -24
- package/templates/skills/knowledge/notebooklm-mcp/references/api_reference.md +0 -34
- package/templates/skills/knowledge/notebooklm-mcp/scripts/example.py +0 -19
|
Binary file
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: notebooklm-mcp
|
|
3
|
-
description: "Connects to Google NotebookLM via Model Context Protocol (MCP) to access notebooks, sources, and query content. Triggers when the user asks to summarize, query, or interact with NotebookLM content."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# NotebookLM MCP Connector
|
|
7
|
-
|
|
8
|
-
## Overview
|
|
9
|
-
|
|
10
|
-
This skill allows the agent to interact with Google NotebookLM content through the `notebooklm-mcp-server`. It enables listing notebooks, retrieving sources, and querying the intelligent notebook interface.
|
|
11
|
-
|
|
12
|
-
## Capabilities
|
|
13
|
-
|
|
14
|
-
1. **List Notebooks**: View all your NotebookLM notebooks.
|
|
15
|
-
2. **Mange Sources**: Add or list sources within a notebook.
|
|
16
|
-
3. **Query Content**: Ask questions about the documents in your notebooks.
|
|
17
|
-
|
|
18
|
-
## Setup & Configuration
|
|
19
|
-
|
|
20
|
-
### 1. Installation
|
|
21
|
-
|
|
22
|
-
The NotebookLM MCP server is installed via `uv`:
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
uv tool install notebooklm-mcp-server
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### 2. Authentication
|
|
29
|
-
|
|
30
|
-
Authentication requires extracting cookies from a logged-in Chrome session.
|
|
31
|
-
|
|
32
|
-
**Recommended Method (File Mode):**
|
|
33
|
-
|
|
34
|
-
1. Install a cookie exporter extension (e.g., [Get cookies.txt LOCALLY](https://chrome.google.com/webstore/detail/get-cookies-txt-locally/cclelndahbckbenkjhflccgombaodnld)).
|
|
35
|
-
2. Log in to [NotebookLM](https://notebooklm.google.com/).
|
|
36
|
-
3. Export cookies for `notebooklm.google.com` to a file (e.g., `~/cookies.txt`).
|
|
37
|
-
4. Run the auth tool:
|
|
38
|
-
```bash
|
|
39
|
-
notebooklm-mcp-auth --file ~/cookies.txt
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
**Auto Mode (Requires Chrome Debugging):**
|
|
43
|
-
|
|
44
|
-
If Chrome is running with `--remote-debugging-port=9222`, you can run:
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
notebooklm-mcp-auth
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
### 3. MCP Configuration
|
|
51
|
-
|
|
52
|
-
Add the following to your MCP client configuration (e.g., Claude Desktop or OpenCode):
|
|
53
|
-
|
|
54
|
-
```json
|
|
55
|
-
{
|
|
56
|
-
"mcpServers": {
|
|
57
|
-
"notebooklm-mcp-server": {
|
|
58
|
-
"command": "uv",
|
|
59
|
-
"args": ["tool", "run", "notebooklm-mcp-server"]
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
## Usage
|
|
66
|
-
|
|
67
|
-
Use the available MCP tools to interact with NotebookLM.
|
|
68
|
-
|
|
69
|
-
- `list_notebooks()`
|
|
70
|
-
- `get_notebook(notebook_id)`
|
|
71
|
-
- `query_notebook(notebook_id, query)`
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# Example Asset File
|
|
2
|
-
|
|
3
|
-
This placeholder represents where asset files would be stored.
|
|
4
|
-
Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
|
|
5
|
-
|
|
6
|
-
Asset files are NOT intended to be loaded into context, but rather used within
|
|
7
|
-
the output Claude produces.
|
|
8
|
-
|
|
9
|
-
Example asset files from other skills:
|
|
10
|
-
- Brand guidelines: logo.png, slides_template.pptx
|
|
11
|
-
- Frontend builder: hello-world/ directory with HTML/React boilerplate
|
|
12
|
-
- Typography: custom-font.ttf, font-family.woff2
|
|
13
|
-
- Data: sample_data.csv, test_dataset.json
|
|
14
|
-
|
|
15
|
-
## Common Asset Types
|
|
16
|
-
|
|
17
|
-
- Templates: .pptx, .docx, boilerplate directories
|
|
18
|
-
- Images: .png, .jpg, .svg, .gif
|
|
19
|
-
- Fonts: .ttf, .otf, .woff, .woff2
|
|
20
|
-
- Boilerplate code: Project directories, starter files
|
|
21
|
-
- Icons: .ico, .svg
|
|
22
|
-
- Data files: .csv, .json, .xml, .yaml
|
|
23
|
-
|
|
24
|
-
Note: This is a text placeholder. Actual assets can be any file type.
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# Reference Documentation for Notebooklm Mcp
|
|
2
|
-
|
|
3
|
-
This is a placeholder for detailed reference documentation.
|
|
4
|
-
Replace with actual reference content or delete if not needed.
|
|
5
|
-
|
|
6
|
-
Example real reference docs from other skills:
|
|
7
|
-
- product-management/references/communication.md - Comprehensive guide for status updates
|
|
8
|
-
- product-management/references/context_building.md - Deep-dive on gathering context
|
|
9
|
-
- bigquery/references/ - API references and query examples
|
|
10
|
-
|
|
11
|
-
## When Reference Docs Are Useful
|
|
12
|
-
|
|
13
|
-
Reference docs are ideal for:
|
|
14
|
-
- Comprehensive API documentation
|
|
15
|
-
- Detailed workflow guides
|
|
16
|
-
- Complex multi-step processes
|
|
17
|
-
- Information too lengthy for main SKILL.md
|
|
18
|
-
- Content that's only needed for specific use cases
|
|
19
|
-
|
|
20
|
-
## Structure Suggestions
|
|
21
|
-
|
|
22
|
-
### API Reference Example
|
|
23
|
-
- Overview
|
|
24
|
-
- Authentication
|
|
25
|
-
- Endpoints with examples
|
|
26
|
-
- Error codes
|
|
27
|
-
- Rate limits
|
|
28
|
-
|
|
29
|
-
### Workflow Guide Example
|
|
30
|
-
- Prerequisites
|
|
31
|
-
- Step-by-step instructions
|
|
32
|
-
- Common patterns
|
|
33
|
-
- Troubleshooting
|
|
34
|
-
- Best practices
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
"""
|
|
3
|
-
Example helper script for notebooklm-mcp
|
|
4
|
-
|
|
5
|
-
This is a placeholder script that can be executed directly.
|
|
6
|
-
Replace with actual implementation or delete if not needed.
|
|
7
|
-
|
|
8
|
-
Example real scripts from other skills:
|
|
9
|
-
- pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
|
|
10
|
-
- pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
def main():
|
|
14
|
-
print("This is an example script for notebooklm-mcp")
|
|
15
|
-
# TODO: Add actual script logic here
|
|
16
|
-
# This could be data processing, file conversion, API calls, etc.
|
|
17
|
-
|
|
18
|
-
if __name__ == "__main__":
|
|
19
|
-
main()
|