@davothebigafro/agents
v0.0.1
Published
Generic agent templates and runtime helpers for building ADK agents from validated Shipwright config.
Readme
@davothebigafro/agents
Generic agent templates and runtime helpers for building ADK agents from validated Shipwright config.
Install
pnpm add @davothebigafro/agents --filter <your-package>Inside this workspace, keep local dependencies on workspace:*. For unreleased local installs, use the tarball workflow in the root contributing guide.
Minimal Usage
import { customAgentTemplate } from '@davothebigafro/agents';
const config = customAgentTemplate.parseConfig({
model: 'google/gemini-3-pro',
systemPrompt: 'Answer concisely and use tools when useful.',
tools: [],
});
const agent = customAgentTemplate.build(config, { templateId: customAgentTemplate.id });The package includes custom, sequential, parallel, loop, and delegating LLM templates plus helpers for loading agent snapshots and running invoke-style requests.
