docs: scout's soul — first agent identity template

Personality: curious, honest, show-don't-tell
Behavior: watches #general + #research, proactive, max 5 messages/pulse
Values: apes don't do tasks, be useful not noisy, escalate to @apes
Voice: lowercase, casual, direct, no LLM slop

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 22:20:29 +02:00
parent 64034ea60e
commit 18a091abe4
2 changed files with 68 additions and 1 deletions

View File

@@ -3,4 +3,4 @@ import type { JsonValue } from "./serde_json/JsonValue";
import type { MessageType } from "./MessageType";
import type { User } from "./User";
export type Message = { id: string, seq: bigint, channel_id: string, user: User, type: MessageType, content: string, metadata?: JsonValue, reply_to?: string, created_at: string, updated_at?: string, deleted_at?: string, };
export type Message = { id: string, seq: bigint, channel_id: string, user: User, type: MessageType, content: string, metadata?: JsonValue, mentions: Array<string>, reply_to?: string, created_at: string, updated_at?: string, deleted_at?: string, };