agentk

v0.1.0

A command palette that understands natural language.

Browse tools directly or let the built-in agent orchestrate them.

Fast, composable, unstyled.

GitHub
No commands found.
Run TestsTesting
BuildCI/CD
DeployDeployment
RollbackRecovery
Scale ServiceInfrastructure
View LogsMonitoring
Deploy staging from main branch
const tools = [
  { name: 'run_tests', label: 'Run Tests' },
  { name: 'build', label: 'Build' },
  {
    name: 'deploy',
    inputSchema: {
      type: 'object',
      properties: {
        environment: { type: 'string', enum: ['staging', 'production'] },
        branch: { type: 'string' },
      },
    },
  },
]

<Command tools={tools} onToolExecute={exec}
  agent={{ provider: 'anthropic', requireApproval: true }}>
  <Command.Input />
  <Command.List />
  <Command.Approval />
  <Command.ActivityFeed />
</Command>
Try the DevOps demo