@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.
Files changed (56) hide show
  1. package/CHANGELOG.md +142 -1
  2. package/README.md +195 -15
  3. package/bin/init.js +154 -5
  4. package/package.json +6 -3
  5. package/templates/base/AGENTS.md +54 -23
  6. package/templates/base/README.md +327 -0
  7. package/templates/base/directives/memory_integration.md +95 -0
  8. package/templates/base/execution/memory_manager.py +309 -0
  9. package/templates/base/execution/session_boot.py +218 -0
  10. package/templates/base/execution/session_init.py +320 -0
  11. package/templates/base/requirements.txt +45 -6
  12. package/templates/base/skill-creator/SKILL_skillcreator.md +3 -3
  13. package/templates/skills/knowledge/design-md/README.md +0 -0
  14. package/templates/skills/knowledge/design-md/SKILL.md +0 -0
  15. package/templates/skills/knowledge/design-md/examples/DESIGN.md +0 -0
  16. package/templates/skills/knowledge/intelligent-routing/SKILL.md +237 -164
  17. package/templates/skills/knowledge/notebooklm-rag/SKILL.md +216 -0
  18. package/templates/skills/knowledge/notebooklm-rag/requirements.txt +9 -0
  19. package/templates/skills/knowledge/notebooklm-rag/scripts/ask_question.py +237 -0
  20. package/templates/skills/knowledge/notebooklm-rag/scripts/auth_manager.py +307 -0
  21. package/templates/skills/knowledge/notebooklm-rag/scripts/browser_utils.py +101 -0
  22. package/templates/skills/knowledge/notebooklm-rag/scripts/cleanup_manager.py +87 -0
  23. package/templates/skills/knowledge/notebooklm-rag/scripts/config.py +45 -0
  24. package/templates/skills/knowledge/notebooklm-rag/scripts/notebook_manager.py +334 -0
  25. package/templates/skills/knowledge/notebooklm-rag/scripts/run.py +92 -0
  26. package/templates/skills/knowledge/notebooklm-rag/scripts/setup_environment.py +68 -0
  27. package/templates/skills/knowledge/parallel-agents/SKILL.md +345 -73
  28. package/templates/skills/knowledge/plugin-discovery/SKILL.md +581 -0
  29. package/templates/skills/knowledge/plugin-discovery/scripts/platform_setup.py +1083 -0
  30. package/templates/skills/knowledge/react-components/README.md +0 -0
  31. package/templates/skills/knowledge/react-components/SKILL.md +0 -0
  32. package/templates/skills/knowledge/react-components/examples/gold-standard-card.tsx +0 -0
  33. package/templates/skills/knowledge/react-components/package-lock.json +0 -0
  34. package/templates/skills/knowledge/react-components/package.json +0 -0
  35. package/templates/skills/knowledge/react-components/resources/architecture-checklist.md +0 -0
  36. package/templates/skills/knowledge/react-components/resources/component-template.tsx +0 -0
  37. package/templates/skills/knowledge/react-components/resources/stitch-api-reference.md +0 -0
  38. package/templates/skills/knowledge/react-components/resources/style-guide.json +0 -0
  39. package/templates/skills/knowledge/react-components/scripts/validate.js +0 -0
  40. package/templates/skills/knowledge/self-update/SKILL.md +0 -0
  41. package/templates/skills/knowledge/self-update/scripts/update_kit.py +0 -0
  42. package/templates/skills/knowledge/stitch-loop/README.md +0 -0
  43. package/templates/skills/knowledge/stitch-loop/SKILL.md +3 -3
  44. package/templates/skills/knowledge/stitch-loop/examples/SITE.md +0 -0
  45. package/templates/skills/knowledge/stitch-loop/examples/next-prompt.md +0 -0
  46. package/templates/skills/knowledge/stitch-loop/resources/baton-schema.md +0 -0
  47. package/templates/skills/knowledge/stitch-loop/resources/site-template.md +0 -0
  48. package/templates/skills/stitch-loop/SKILL.md +3 -3
  49. package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-314.pyc +0 -0
  50. package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-314.pyc +0 -0
  51. package/templates/skills/knowledge/SKILLS_CATALOG.md +0 -796
  52. package/templates/skills/knowledge/jira/scripts/__pycache__/jira_client.cpython-314.pyc +0 -0
  53. package/templates/skills/knowledge/notebooklm-mcp/SKILL.md +0 -71
  54. package/templates/skills/knowledge/notebooklm-mcp/assets/example_asset.txt +0 -24
  55. package/templates/skills/knowledge/notebooklm-mcp/references/api_reference.md +0 -34
  56. package/templates/skills/knowledge/notebooklm-mcp/scripts/example.py +0 -19
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: Consult Context Files
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: Consult Memory (Optional)
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., Jules API) |
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.
@@ -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: Consult Context Files
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: Consult Memory (Optional)
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., Jules API) |
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.