@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.
- package/dist/arkServices.js +14 -0
- package/dist/commands/completion/index.js +9 -6
- package/dist/commands/export/index.js +0 -1
- package/dist/commands/generate/generators/team.js +0 -1
- package/dist/commands/install/index.js +33 -30
- package/dist/commands/marketplace/index.js +18 -3
- package/dist/commands/models/create.js +1 -0
- package/dist/commands/models/kubernetes/manifest-builder.js +22 -0
- package/dist/commands/models/providers/anthropic.d.ts +15 -0
- package/dist/commands/models/providers/anthropic.js +72 -0
- package/dist/commands/models/providers/factory.js +3 -0
- package/dist/commands/models/providers/index.d.ts +3 -4
- package/dist/commands/models/providers/index.js +1 -0
- package/dist/commands/uninstall/index.js +8 -2
- package/dist/components/ChatUI.js +4 -17
- package/dist/index.js +0 -2
- package/dist/lib/arkApiClient.d.ts +14 -4
- package/dist/lib/arkApiClient.js +51 -34
- package/dist/lib/chatClient.d.ts +4 -6
- package/dist/lib/chatClient.js +136 -102
- package/dist/lib/errors.d.ts +0 -1
- package/dist/lib/errors.js +0 -1
- package/dist/lib/marketplaceFetcher.d.ts +1 -0
- package/dist/lib/marketplaceFetcher.js +17 -0
- package/dist/lib/types.d.ts +0 -38
- package/dist/marketplaceServices.d.ts +6 -1
- package/dist/marketplaceServices.js +19 -3
- package/dist/types/arkService.d.ts +1 -0
- package/dist/types/marketplace.d.ts +1 -1
- package/package.json +5 -3
- package/templates/marketplace/README.md +5 -194
- package/templates/tool/uv.lock +794 -95
- package/dist/commands/evaluation/index.d.ts +0 -3
- package/dist/commands/evaluation/index.js +0 -60
- package/dist/lib/executeEvaluation.d.ts +0 -16
- package/dist/lib/executeEvaluation.js +0 -155
- package/templates/marketplace/.editorconfig +0 -24
- package/templates/marketplace/.github/.keep +0 -11
- package/templates/marketplace/.github/workflows/.keep +0 -16
- package/templates/marketplace/.helmignore +0 -23
- package/templates/marketplace/.prettierrc.json +0 -20
- package/templates/marketplace/.yamllint.yml +0 -53
- package/templates/marketplace/agents/.keep +0 -29
- package/templates/marketplace/docs/.keep +0 -19
- package/templates/marketplace/marketplace.json.example +0 -59
- package/templates/marketplace/mcp-servers/.keep +0 -32
- package/templates/marketplace/models/.keep +0 -23
- package/templates/marketplace/projects/.keep +0 -43
- package/templates/marketplace/queries/.keep +0 -25
- package/templates/marketplace/teams/.keep +0 -29
- package/templates/marketplace/tools/.keep +0 -32
- 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
|