tyga-orchestrator
v0.1.0
Published
JS client SDK for A2A Infrastructure — submit tasks, evaluate commands, orchestrate agents
Maintainers
Readme
tyga-orchestrator
JS client SDK for A2A Infrastructure. Submit tasks to pipelines, evaluate commands, and orchestrate multi-agent workflows with scoped permissions.
Install
npm install tyga-orchestratorQuick Start
const { OrchestrationClient } = require('tyga-orchestrator');
const client = new OrchestrationClient({
apiKey: 'a2a_YOUR_KEY',
baseUrl: 'https://a2ainfrastructure.com',
});
// Evaluate a command
const result = await client.evaluate('rm -rf /', { context: 'my-agent' });
console.log(result.allowed); // false
// Submit a task to a pipeline
const task = await client.submitTask('pipeline-id', {
command: 'python train.py',
});Get an API key
Sign up free at a2ainfrastructure.com.
Links
License
Proprietary — Tyga.Cloud Ltd. See LICENSE file.
