Move every agent-specific instruction out of the shared container/CLAUDE.md
so the base is genuinely universal. Persona/identity now comes from the
system-prompt addendum (buildSystemPromptAddendum now takes assistantName
and prepends "# You are {name}"). Per-module instructions live alongside
each MCP tool source:
container/agent-runner/src/mcp-tools/core.instructions.md
container/agent-runner/src/mcp-tools/scheduling.instructions.md
container/agent-runner/src/mcp-tools/self-mod.instructions.md
composeGroupClaudeMd() scans that directory and emits `module-<name>.md`
fragments as symlinks to /app/src/mcp-tools/<name>.instructions.md (valid
via the existing RO source mount). Skill fragments renamed to
`skill-<name>.md` for naming consistency with `module-*` and `mcp-*`.
Mount tightening so composer-managed files can't be clobbered by agent
writes: nested RO mounts for /workspace/agent/CLAUDE.md and
/workspace/agent/.claude-fragments/. CLAUDE.local.md (per-group memory)
stays RW as the only writable CLAUDE.md-family file.
.gitignore: ignore CLAUDE.local.md, .claude-shared.md, .claude-fragments/
everywhere, and simplify groups/ rules to ignore the whole tree (per-
installation state, not tracked).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
107 lines
3.8 KiB
TypeScript
107 lines
3.8 KiB
TypeScript
/**
|
|
* NanoClaw Agent Runner v2
|
|
*
|
|
* Runs inside a container. All IO goes through the session DB.
|
|
* No stdin, no stdout markers, no IPC files.
|
|
*
|
|
* Config is read from /workspace/agent/container.json (mounted RO).
|
|
* Only TZ and OneCLI networking vars come from env.
|
|
*
|
|
* Mount structure:
|
|
* /workspace/
|
|
* inbound.db ← host-owned session DB (container reads only)
|
|
* outbound.db ← container-owned session DB
|
|
* .heartbeat ← container touches for liveness detection
|
|
* outbox/ ← outbound files
|
|
* agent/ ← agent group folder (CLAUDE.md, container.json, working files)
|
|
* container.json ← per-group config (RO nested mount)
|
|
* global/ ← shared global memory (RO)
|
|
* /app/src/ ← shared agent-runner source (RO)
|
|
* /app/skills/ ← shared skills (RO)
|
|
* /home/node/.claude/ ← Claude SDK state + skill symlinks (RW)
|
|
*/
|
|
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
import { loadConfig } from './config.js';
|
|
import { buildSystemPromptAddendum } from './destinations.js';
|
|
// Providers barrel — each enabled provider self-registers on import.
|
|
// Provider skills append imports to providers/index.ts.
|
|
import './providers/index.js';
|
|
import { createProvider, type ProviderName } from './providers/factory.js';
|
|
import { runPollLoop } from './poll-loop.js';
|
|
|
|
function log(msg: string): void {
|
|
console.error(`[agent-runner] ${msg}`);
|
|
}
|
|
|
|
const CWD = '/workspace/agent';
|
|
|
|
async function main(): Promise<void> {
|
|
const config = loadConfig();
|
|
const providerName = config.provider.toLowerCase() as ProviderName;
|
|
|
|
log(`Starting v2 agent-runner (provider: ${providerName})`);
|
|
|
|
// Runtime-generated system-prompt addendum: agent identity (name) plus
|
|
// the live destinations map. Everything else (capabilities, per-module
|
|
// instructions, per-channel formatting) is loaded by Claude Code from
|
|
// /workspace/agent/CLAUDE.md — the composed entry imports the shared
|
|
// base (/app/CLAUDE.md) and each enabled module's fragment. Per-group
|
|
// memory lives in /workspace/agent/CLAUDE.local.md (auto-loaded).
|
|
const instructions = buildSystemPromptAddendum(config.assistantName || undefined);
|
|
|
|
// Discover additional directories mounted at /workspace/extra/*
|
|
const additionalDirectories: string[] = [];
|
|
const extraBase = '/workspace/extra';
|
|
if (fs.existsSync(extraBase)) {
|
|
for (const entry of fs.readdirSync(extraBase)) {
|
|
const fullPath = path.join(extraBase, entry);
|
|
if (fs.statSync(fullPath).isDirectory()) {
|
|
additionalDirectories.push(fullPath);
|
|
}
|
|
}
|
|
if (additionalDirectories.length > 0) {
|
|
log(`Additional directories: ${additionalDirectories.join(', ')}`);
|
|
}
|
|
}
|
|
|
|
// MCP server path — bun runs TS directly; no tsc build step in-image.
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const mcpServerPath = path.join(__dirname, 'mcp-tools', 'index.ts');
|
|
|
|
// Build MCP servers config: nanoclaw built-in + any from container.json
|
|
const mcpServers: Record<string, { command: string; args: string[]; env: Record<string, string> }> = {
|
|
nanoclaw: {
|
|
command: 'bun',
|
|
args: ['run', mcpServerPath],
|
|
env: {},
|
|
},
|
|
};
|
|
|
|
for (const [name, serverConfig] of Object.entries(config.mcpServers)) {
|
|
mcpServers[name] = serverConfig;
|
|
log(`Additional MCP server: ${name} (${serverConfig.command})`);
|
|
}
|
|
|
|
const provider = createProvider(providerName, {
|
|
assistantName: config.assistantName || undefined,
|
|
mcpServers,
|
|
env: { ...process.env },
|
|
additionalDirectories: additionalDirectories.length > 0 ? additionalDirectories : undefined,
|
|
});
|
|
|
|
await runPollLoop({
|
|
provider,
|
|
cwd: CWD,
|
|
systemContext: { instructions },
|
|
});
|
|
}
|
|
|
|
main().catch((err) => {
|
|
log(`Fatal error: ${err instanceof Error ? err.message : String(err)}`);
|
|
process.exit(1);
|
|
});
|