@agents-at-scale/ark 0.1.55 → 0.1.57

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 (52) hide show
  1. package/dist/arkServices.js +14 -0
  2. package/dist/commands/completion/index.js +9 -6
  3. package/dist/commands/export/index.js +0 -1
  4. package/dist/commands/generate/generators/team.js +0 -1
  5. package/dist/commands/install/index.js +33 -30
  6. package/dist/commands/marketplace/index.js +18 -3
  7. package/dist/commands/models/create.js +1 -0
  8. package/dist/commands/models/kubernetes/manifest-builder.js +22 -0
  9. package/dist/commands/models/providers/anthropic.d.ts +15 -0
  10. package/dist/commands/models/providers/anthropic.js +72 -0
  11. package/dist/commands/models/providers/factory.js +3 -0
  12. package/dist/commands/models/providers/index.d.ts +3 -4
  13. package/dist/commands/models/providers/index.js +1 -0
  14. package/dist/commands/uninstall/index.js +8 -2
  15. package/dist/components/ChatUI.js +4 -17
  16. package/dist/index.js +0 -2
  17. package/dist/lib/arkApiClient.d.ts +14 -4
  18. package/dist/lib/arkApiClient.js +51 -34
  19. package/dist/lib/chatClient.d.ts +4 -6
  20. package/dist/lib/chatClient.js +136 -102
  21. package/dist/lib/errors.d.ts +0 -1
  22. package/dist/lib/errors.js +0 -1
  23. package/dist/lib/marketplaceFetcher.d.ts +1 -0
  24. package/dist/lib/marketplaceFetcher.js +17 -0
  25. package/dist/lib/types.d.ts +0 -38
  26. package/dist/marketplaceServices.d.ts +6 -1
  27. package/dist/marketplaceServices.js +19 -3
  28. package/dist/types/arkService.d.ts +1 -0
  29. package/dist/types/marketplace.d.ts +1 -1
  30. package/package.json +5 -3
  31. package/templates/marketplace/README.md +5 -194
  32. package/templates/tool/uv.lock +794 -95
  33. package/dist/commands/evaluation/index.d.ts +0 -3
  34. package/dist/commands/evaluation/index.js +0 -60
  35. package/dist/lib/executeEvaluation.d.ts +0 -16
  36. package/dist/lib/executeEvaluation.js +0 -155
  37. package/templates/marketplace/.editorconfig +0 -24
  38. package/templates/marketplace/.github/.keep +0 -11
  39. package/templates/marketplace/.github/workflows/.keep +0 -16
  40. package/templates/marketplace/.helmignore +0 -23
  41. package/templates/marketplace/.prettierrc.json +0 -20
  42. package/templates/marketplace/.yamllint.yml +0 -53
  43. package/templates/marketplace/agents/.keep +0 -29
  44. package/templates/marketplace/docs/.keep +0 -19
  45. package/templates/marketplace/marketplace.json.example +0 -59
  46. package/templates/marketplace/mcp-servers/.keep +0 -32
  47. package/templates/marketplace/models/.keep +0 -23
  48. package/templates/marketplace/projects/.keep +0 -43
  49. package/templates/marketplace/queries/.keep +0 -25
  50. package/templates/marketplace/teams/.keep +0 -29
  51. package/templates/marketplace/tools/.keep +0 -32
  52. package/templates/marketplace/tools/examples/.keep +0 -17
@@ -1,32 +0,0 @@
1
- # Tools Directory
2
-
3
- This directory contains reusable tool definitions for extending agent capabilities.
4
-
5
- ## Structure
6
-
7
- Each tool should be in its own subdirectory with:
8
-
9
- - tool.yaml (the main tool definition)
10
- - src/ (source code if applicable)
11
- - Dockerfile (if containerized)
12
- - README.md (documentation)
13
- - examples/ (usage examples)
14
-
15
- ## Naming Convention
16
-
17
- Use descriptive names that indicate the tool's function:
18
-
19
- - file-processor/
20
- - database-connector/
21
- - api-client/
22
- - data-validator/
23
-
24
- ## Contributing
25
-
26
- When contributing a tool:
27
-
28
- 1. Follow the Ark tool specification
29
- 2. Include comprehensive documentation
30
- 3. Provide usage examples
31
- 4. Ensure proper error handling
32
- 5. Include security considerations
@@ -1,17 +0,0 @@
1
- # Tool Examples Directory
2
-
3
- This directory contains example tool implementations that can serve as templates.
4
-
5
- Examples should demonstrate:
6
-
7
- - Best practices for tool development
8
- - Common patterns and use cases
9
- - Integration with different agent types
10
- - Error handling and logging
11
-
12
- Each example should include:
13
-
14
- - Complete source code
15
- - Documentation
16
- - Build instructions
17
- - Testing guidelines