disclaw/dist/agent/identity.js
2026-04-08 14:24:45 +02:00

162 lines
No EOL
5.7 KiB
JavaScript

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadAgentIdentity = loadAgentIdentity;
exports.createAgentYaml = createAgentYaml;
exports.createClaudeMd = createClaudeMd;
exports.createClaudeConfig = createClaudeConfig;
exports.setupAgentWorkspace = setupAgentWorkspace;
const fs = __importStar(require("fs"));
const path = __importStar(require("path"));
const YAML = __importStar(require("yaml"));
/**
* Loads agent.yaml from the workspace folder and returns the parsed identity.
* Re-read on every call so edits take effect immediately.
*/
function loadAgentIdentity(workspacePath) {
const yamlPath = path.join(workspacePath, "agent.yaml");
if (!fs.existsSync(yamlPath)) {
throw new Error(`agent.yaml not found at ${yamlPath}`);
}
const raw = fs.readFileSync(yamlPath, "utf-8");
return YAML.parse(raw);
}
/**
* Creates the agent.yaml file for a new agent workspace.
* This file contains only DisClaw routing metadata.
* All identity/personality/instructions go in CLAUDE.md.
*/
function createAgentYaml(workspacePath, name, role, channelId) {
const identity = {
name,
display_name: name
.split("-")
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
.join(" "),
role,
channel_id: channelId,
};
const yamlContent = YAML.stringify(identity);
fs.writeFileSync(path.join(workspacePath, "agent.yaml"), yamlContent, "utf-8");
}
/**
* Creates the CLAUDE.md file that serves as the agent's identity.
* Claude Code reads this file automatically when invoked with cwd
* set to the workspace directory. This is the primary identity mechanism.
*/
function createClaudeMd(workspacePath, name, role) {
const displayName = name
.split("-")
.map((w) => w.charAt(0).toUpperCase() + w.slice(1))
.join(" ");
const content = `# ${displayName}
You are **${displayName}**, a specialized agent in the DisClaw multi-agent workspace.
## Your Role
${role}
## Your Identity
- **Name:** ${displayName}
- **Workspace:** This directory is your workspace. All your files and context live here.
- **Communication:** You receive messages from users via Discord. Your responses are sent back to the Discord channel.
## Personality
- Pragmatic and solution-oriented
- Explain your decisions clearly
- Prefer simple, maintainable solutions over clever ones
- Stay focused on your role and area of expertise
## Guidelines
- You work with the files in this workspace directory
- Answer questions related to your role
- When asked to create or modify files, do so within this workspace
- Be concise in your responses -- they are displayed in Discord (2000 char limit per message)
- If a task is outside your area of expertise, say so clearly
## Workspace Contents
Add project-specific context below. Describe the files, conventions,
and architecture relevant to this agent's work.
---
*This file defines your identity. Edit it to customize your agent's behavior.*
`;
fs.writeFileSync(path.join(workspacePath, "CLAUDE.md"), content, "utf-8");
}
/**
* Creates the .claude/ directory structure for a workspace.
* This provides per-agent Claude Code configuration.
*/
function createClaudeConfig(workspacePath) {
const claudeDir = path.join(workspacePath, ".claude");
const commandsDir = path.join(claudeDir, "commands");
// Create directory structure
fs.mkdirSync(commandsDir, { recursive: true });
// Create settings.json with agent-specific settings
const settings = {
permissions: {
allow: [
"Read",
"Write",
"Edit",
"Bash",
"Glob",
"Grep"
]
}
};
fs.writeFileSync(path.join(claudeDir, "settings.json"), JSON.stringify(settings, null, 2), "utf-8");
}
/**
* Sets up a complete agent workspace with all required files:
* - agent.yaml (DisClaw metadata)
* - CLAUDE.md (agent identity for Claude Code)
* - .claude/ directory structure
*/
function setupAgentWorkspace(workspacePath, name, role, channelId) {
// Ensure workspace directory exists
fs.mkdirSync(workspacePath, { recursive: true });
// Create all required files
createAgentYaml(workspacePath, name, role, channelId);
createClaudeMd(workspacePath, name, role);
createClaudeConfig(workspacePath);
}
//# sourceMappingURL=identity.js.map