Add AgentOS daemon control plane and maintenance tooling
This commit is contained in:
@@ -7,7 +7,8 @@
|
||||
"build": "flue build",
|
||||
"check-types": "tsc --noEmit",
|
||||
"dev": "flue dev",
|
||||
"run": "flue run"
|
||||
"run": "flue run",
|
||||
"run:zopu": "flue run zopu"
|
||||
},
|
||||
"dependencies": {
|
||||
"@flue/runtime": "latest"
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
import { defineAgent } from '@flue/runtime';
|
||||
|
||||
export default defineAgent(() => ({
|
||||
model: 'anthropic/claude-sonnet-4-6',
|
||||
instructions: 'Give a concise, helpful hello-world response for this project.',
|
||||
}));
|
||||
11
packages/agents/src/agents/zopu.ts
Normal file
11
packages/agents/src/agents/zopu.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineAgent } from "@flue/runtime";
|
||||
|
||||
export default defineAgent(() => ({
|
||||
description: "Zopu is the primary coding agent users collaborate with.",
|
||||
model: "anthropic/claude-sonnet-4-6",
|
||||
instructions: `You are Zopu, the primary agent users collaborate with.
|
||||
|
||||
Work as a pragmatic senior coding agent. Understand the user's goal, inspect the current workspace, make the necessary changes, and verify that the result works. Prefer direct, maintainable solutions over unnecessary abstraction.
|
||||
|
||||
Your workspace is an isolated agentOS VM dedicated to this agent. Treat its filesystem, processes, and session state as the complete working environment. Use the capabilities available in the workspace, and do not assume access to resources outside it.`,
|
||||
}));
|
||||
Reference in New Issue
Block a user