@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,197 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Ark Marketplace
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The Ark Marketplace lives in a separate repository:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**Repository**: https://github.com/mckinsey/agents-at-scale-marketplace
|
|
6
|
+
**Documentation**: https://mckinsey.github.io/agents-at-scale-marketplace/
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
- **Agents** - Pre-configured AI agents for specific tasks
|
|
10
|
-
- **Teams** - Multi-agent workflows and orchestration patterns
|
|
11
|
-
- **Models** - Model configurations for different providers and use cases
|
|
12
|
-
- **Tools** - Extensions that add capabilities to agents
|
|
13
|
-
- **MCP Servers** - Model Context Protocol server implementations
|
|
14
|
-
- **Queries** - Reusable query templates and patterns
|
|
15
|
-
- **Projects** - Complete, end-to-end Ark project templates and solutions
|
|
16
|
-
|
|
17
|
-
## Repository Structure
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
marketplace/
|
|
21
|
-
├── agents/ # Reusable agent definitions
|
|
22
|
-
├── teams/ # Multi-agent workflow configurations
|
|
23
|
-
├── models/ # Model configurations by provider
|
|
24
|
-
├── queries/ # Query templates and patterns
|
|
25
|
-
├── tools/ # Tool definitions and implementations
|
|
26
|
-
├── mcp-servers/ # MCP server configurations
|
|
27
|
-
├── projects/ # Complete Ark project templates and solutions
|
|
28
|
-
├── tests/ # Test configurations and utilities
|
|
29
|
-
├── scripts/ # Automation and validation scripts
|
|
30
|
-
├── docs/ # Documentation and guides
|
|
31
|
-
├── templates/ # Component creation templates
|
|
32
|
-
└── .github/ # GitHub workflows and templates
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## Contributing Components
|
|
36
|
-
|
|
37
|
-
### Getting Started
|
|
38
|
-
|
|
39
|
-
1. **Fork** this repository
|
|
40
|
-
2. **Choose** the appropriate directory for your component type
|
|
41
|
-
3. **Copy** the relevant template from `templates/` directory
|
|
42
|
-
4. **Implement** your component following the guidelines
|
|
43
|
-
5. **Test** your component thoroughly
|
|
44
|
-
6. **Submit** a pull request
|
|
45
|
-
|
|
46
|
-
### Component Guidelines
|
|
47
|
-
|
|
48
|
-
#### Agents (`agents/`)
|
|
49
|
-
|
|
50
|
-
- One agent per subdirectory
|
|
51
|
-
- Include `agent.yaml` with complete agent definition
|
|
52
|
-
- Provide comprehensive `README.md` with usage examples
|
|
53
|
-
- Test with multiple model providers when possible
|
|
54
|
-
|
|
55
|
-
#### Teams (`teams/`)
|
|
56
|
-
|
|
57
|
-
- Document the workflow strategy and use cases
|
|
58
|
-
- Include example inputs and expected outputs
|
|
59
|
-
- Explain when to use this team configuration
|
|
60
|
-
- Test the complete workflow end-to-end
|
|
61
|
-
|
|
62
|
-
#### Models (`models/`)
|
|
63
|
-
|
|
64
|
-
- Organize by provider (openai/, anthropic/, etc.)
|
|
65
|
-
- Include provider-specific configurations
|
|
66
|
-
- Document capabilities, limitations, and costs
|
|
67
|
-
- Specify recommended use cases
|
|
68
|
-
|
|
69
|
-
#### Tools (`tools/`)
|
|
70
|
-
|
|
71
|
-
- Follow Ark tool specification
|
|
72
|
-
- Include source code and build instructions
|
|
73
|
-
- Provide security considerations
|
|
74
|
-
- Include comprehensive error handling
|
|
75
|
-
|
|
76
|
-
#### MCP Servers (`mcp-servers/`)
|
|
77
|
-
|
|
78
|
-
- Follow MCP protocol specifications
|
|
79
|
-
- Document all available tools and resources
|
|
80
|
-
- Include security and monitoring configurations
|
|
81
|
-
- Provide integration examples
|
|
82
|
-
|
|
83
|
-
#### Queries (`queries/`)
|
|
84
|
-
|
|
85
|
-
- Make queries parameterizable where possible
|
|
86
|
-
- Document expected inputs and outputs
|
|
87
|
-
- Specify compatible agents and teams
|
|
88
|
-
- Include usage examples
|
|
89
|
-
|
|
90
|
-
#### Projects (`projects/`)
|
|
91
|
-
|
|
92
|
-
- Provide complete, self-contained Ark project structures
|
|
93
|
-
- Include comprehensive documentation with architecture overview
|
|
94
|
-
- Specify all required dependencies (models, tools, external services)
|
|
95
|
-
- Provide clear setup and deployment instructions
|
|
96
|
-
- Include working examples and sample data where applicable
|
|
97
|
-
- Document the use case and target scenarios
|
|
98
|
-
- Follow Ark best practices for resource organization
|
|
99
|
-
- Include multiple components working together (agents, teams, tools, etc.)
|
|
100
|
-
|
|
101
|
-
### Quality Standards
|
|
102
|
-
|
|
103
|
-
All contributions must meet these standards:
|
|
104
|
-
|
|
105
|
-
- ✅ **Documentation** - Clear README with setup and usage instructions
|
|
106
|
-
- ✅ **Security** - Follow security best practices
|
|
107
|
-
- ✅ **Compatibility** - Work with latest Ark version
|
|
108
|
-
- ✅ **Examples** - Provide working usage examples
|
|
109
|
-
- ✅ **Validation** - Pass all automated validation checks
|
|
110
|
-
|
|
111
|
-
### Submission Process
|
|
112
|
-
|
|
113
|
-
1. **Create** your component following the guidelines above
|
|
114
|
-
2. **Run** validation scripts: `scripts/validate-component.sh <component-path>`
|
|
115
|
-
3. **Test** your component in a real environment
|
|
116
|
-
4. **Submit** pull request with:
|
|
117
|
-
- Clear description of the component's purpose
|
|
118
|
-
- Usage examples and test results
|
|
119
|
-
- Documentation of any dependencies
|
|
120
|
-
- Screenshots or demos if applicable
|
|
121
|
-
|
|
122
|
-
### Review Process
|
|
123
|
-
|
|
124
|
-
1. **Automated Checks** - CI pipeline validates component structure and security
|
|
125
|
-
2. **Community Review** - Other contributors provide feedback
|
|
126
|
-
3. **Maintainer Review** - Core team performs final review
|
|
127
|
-
4. **Approval** - Component is merged and becomes available
|
|
128
|
-
|
|
129
|
-
## Using Marketplace Components
|
|
130
|
-
|
|
131
|
-
### Finding Components
|
|
132
|
-
|
|
133
|
-
- Browse directories by component type
|
|
134
|
-
- Check `README.md` files for detailed descriptions
|
|
135
|
-
- Look for tags and categories in component metadata
|
|
136
|
-
- Use GitHub search to find specific functionality
|
|
137
|
-
|
|
138
|
-
### Installing Components
|
|
139
|
-
|
|
140
|
-
1. **Copy** the component files to your project
|
|
141
|
-
2. **Customize** configuration as needed
|
|
142
|
-
3. **Install** any dependencies listed in component README
|
|
143
|
-
4. **Test** the component in your environment
|
|
144
|
-
5. **Deploy** following your project's deployment process
|
|
145
|
-
|
|
146
|
-
### Component Versioning
|
|
147
|
-
|
|
148
|
-
Components follow semantic versioning:
|
|
149
|
-
|
|
150
|
-
- **Major** - Breaking changes requiring migration
|
|
151
|
-
- **Minor** - New features, backward compatible
|
|
152
|
-
- **Patch** - Bug fixes and minor improvements
|
|
153
|
-
|
|
154
|
-
## Support and Community
|
|
155
|
-
|
|
156
|
-
### Getting Help
|
|
157
|
-
|
|
158
|
-
- 📖 **Documentation** - Check `docs/` directory for guides
|
|
159
|
-
- 💬 **Discussions** - Use GitHub Discussions for questions
|
|
160
|
-
- 🐛 **Issues** - Report bugs or request features via GitHub Issues
|
|
161
|
-
- 📧 **Contact** - Reach out to maintainers for urgent matters
|
|
162
|
-
|
|
163
|
-
### Contributing Beyond Components
|
|
164
|
-
|
|
165
|
-
We welcome contributions in many forms:
|
|
166
|
-
|
|
167
|
-
- 📝 **Documentation** improvements
|
|
168
|
-
- 🧪 **Testing** and validation improvements
|
|
169
|
-
- 🔧 **Tooling** and automation enhancements
|
|
170
|
-
- 🎨 **Templates** and examples
|
|
171
|
-
- 🔍 **Reviews** and feedback on submissions
|
|
172
|
-
|
|
173
|
-
## Governance
|
|
174
|
-
|
|
175
|
-
### Maintainers
|
|
176
|
-
|
|
177
|
-
The marketplace is maintained by the core team and trusted community contributors.
|
|
178
|
-
|
|
179
|
-
### Licensing
|
|
180
|
-
|
|
181
|
-
All contributions must be compatible with the project license. By contributing, you agree to license your contributions under the same terms.
|
|
182
|
-
|
|
183
|
-
### Code of Conduct
|
|
184
|
-
|
|
185
|
-
This project follows the [Contributor Covenant Code of Conduct](CODE_OF_CONDUCT.md). Please read and follow these guidelines in all interactions.
|
|
186
|
-
|
|
187
|
-
## Quick Start
|
|
188
|
-
|
|
189
|
-
Ready to contribute? Start here:
|
|
190
|
-
|
|
191
|
-
1. **Explore** existing components for inspiration
|
|
192
|
-
2. **Choose** a template from `templates/` directory
|
|
193
|
-
3. **Read** the component-specific guidelines in `docs/`
|
|
194
|
-
4. **Create** your component following the standards
|
|
195
|
-
5. **Submit** your pull request
|
|
196
|
-
|
|
197
|
-
Thank you for contributing to the {{ .Values.projectName }} Marketplace! 🚀
|
|
8
|
+
See the marketplace repo for structure, contribution guidelines, and available components (executors, services, MCP servers, agents, demos).
|