@alexkroman1/aai 0.7.3 → 0.7.4

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 (37) hide show
  1. package/package.json +3 -2
  2. package/templates/.env +1 -0
  3. package/templates/_shared/.env.example +5 -0
  4. package/templates/_shared/CLAUDE.md +710 -0
  5. package/templates/_shared/package.json +17 -0
  6. package/templates/_shared/tsconfig.json +16 -0
  7. package/templates/code-interpreter/agent.ts +27 -0
  8. package/templates/code-interpreter/client.tsx +2 -0
  9. package/templates/dispatch-center/agent.ts +1564 -0
  10. package/templates/dispatch-center/client.tsx +504 -0
  11. package/templates/embedded-assets/agent.ts +49 -0
  12. package/templates/embedded-assets/client.tsx +2 -0
  13. package/templates/embedded-assets/knowledge.json +20 -0
  14. package/templates/health-assistant/agent.ts +160 -0
  15. package/templates/health-assistant/client.tsx +2 -0
  16. package/templates/infocom-adventure/agent.ts +164 -0
  17. package/templates/infocom-adventure/client.tsx +299 -0
  18. package/templates/math-buddy/agent.ts +21 -0
  19. package/templates/math-buddy/client.tsx +2 -0
  20. package/templates/memory-agent/agent.ts +74 -0
  21. package/templates/memory-agent/client.tsx +2 -0
  22. package/templates/night-owl/agent.ts +98 -0
  23. package/templates/night-owl/client.tsx +28 -0
  24. package/templates/personal-finance/agent.ts +26 -0
  25. package/templates/personal-finance/client.tsx +2 -0
  26. package/templates/simple/agent.ts +6 -0
  27. package/templates/simple/client.tsx +2 -0
  28. package/templates/smart-research/agent.ts +164 -0
  29. package/templates/smart-research/client.tsx +2 -0
  30. package/templates/support/README.md +62 -0
  31. package/templates/support/agent.ts +19 -0
  32. package/templates/support/client.tsx +2 -0
  33. package/templates/travel-concierge/agent.ts +29 -0
  34. package/templates/travel-concierge/client.tsx +2 -0
  35. package/templates/tsconfig.json +1 -0
  36. package/templates/web-researcher/agent.ts +17 -0
  37. package/templates/web-researcher/client.tsx +2 -0
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@alexkroman1/aai",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aai": "dist/aai.js"
7
7
  },
8
8
  "files": [
9
- "dist"
9
+ "dist",
10
+ "templates"
10
11
  ],
11
12
  "exports": {
12
13
  ".": {
package/templates/.env ADDED
@@ -0,0 +1 @@
1
+ ASSEMBLYAI_API_KEY=
@@ -0,0 +1,5 @@
1
+ # Set secrets on the server with: aai env add <NAME>
2
+ # Pull secret names here for local reference: aai env pull
3
+ #
4
+ # ASSEMBLYAI_API_KEY is managed globally by the CLI (~/.config/aai/).
5
+ # Add any additional secrets your agent needs below: