@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
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -73,7 +73,7 @@ Parse `next-prompt.md` to extract:
|
|
|
73
73
|
- **Page name** from the `page` frontmatter field
|
|
74
74
|
- **Prompt content** from the markdown body
|
|
75
75
|
|
|
76
|
-
### Step 2:
|
|
76
|
+
### Step 2: Check Context Files
|
|
77
77
|
|
|
78
78
|
Before generating, read these files:
|
|
79
79
|
|
|
@@ -82,7 +82,7 @@ Before generating, read these files:
|
|
|
82
82
|
| `SITE.md` | Site vision, **Stitch Project ID**, existing pages (sitemap), roadmap |
|
|
83
83
|
| `DESIGN.md` | Required visual style for Stitch prompts |
|
|
84
84
|
|
|
85
|
-
### Step 2.5:
|
|
85
|
+
### Step 2.5: Check Memory (Optional)
|
|
86
86
|
|
|
87
87
|
If the **Qdrant Memory Skill** is available, retrieve relevant context to ensure consistency:
|
|
88
88
|
|
|
@@ -204,7 +204,7 @@ The loop can be driven by different orchestration layers:
|
|
|
204
204
|
| ----------------- | ------------------------------------------------------ |
|
|
205
205
|
| **CI/CD** | GitHub Actions triggers on `next-prompt.md` changes |
|
|
206
206
|
| **Human-in-loop** | Developer reviews each iteration before continuing |
|
|
207
|
-
| **Agent chains** | One agent dispatches to another (e.g.,
|
|
207
|
+
| **Agent chains** | One agent dispatches to another (e.g., CI/CD pipeline) |
|
|
208
208
|
| **Manual** | Developer runs the agent repeatedly with the same repo |
|
|
209
209
|
|
|
210
210
|
The skill is orchestration-agnostic — focus on the pattern, not the trigger mechanism.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -73,7 +73,7 @@ Parse `next-prompt.md` to extract:
|
|
|
73
73
|
- **Page name** from the `page` frontmatter field
|
|
74
74
|
- **Prompt content** from the markdown body
|
|
75
75
|
|
|
76
|
-
### Step 2:
|
|
76
|
+
### Step 2: Check Context Files
|
|
77
77
|
|
|
78
78
|
Before generating, read these files:
|
|
79
79
|
|
|
@@ -82,7 +82,7 @@ Before generating, read these files:
|
|
|
82
82
|
| `SITE.md` | Site vision, **Stitch Project ID**, existing pages (sitemap), roadmap |
|
|
83
83
|
| `DESIGN.md` | Required visual style for Stitch prompts |
|
|
84
84
|
|
|
85
|
-
### Step 2.5:
|
|
85
|
+
### Step 2.5: Check Memory (Optional)
|
|
86
86
|
|
|
87
87
|
If the **Qdrant Memory Skill** is available, retrieve relevant context to ensure consistency:
|
|
88
88
|
|
|
@@ -204,7 +204,7 @@ The loop can be driven by different orchestration layers:
|
|
|
204
204
|
| ----------------- | ------------------------------------------------------ |
|
|
205
205
|
| **CI/CD** | GitHub Actions triggers on `next-prompt.md` changes |
|
|
206
206
|
| **Human-in-loop** | Developer reviews each iteration before continuing |
|
|
207
|
-
| **Agent chains** | One agent dispatches to another (e.g.,
|
|
207
|
+
| **Agent chains** | One agent dispatches to another (e.g., CI/CD pipeline) |
|
|
208
208
|
| **Manual** | Developer runs the agent repeatedly with the same repo |
|
|
209
209
|
|
|
210
210
|
The skill is orchestration-agnostic — focus on the pattern, not the trigger mechanism.
|