mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-06 19:00:01 +02:00
* refactor(daemon): rewrite Mentions and Comment Formatting to their judgment form (MUL-5442) Stage 2, final two sections, bundled per the small-sections rule. Mentions: the four-link side-effect table stays verbatim (platform facts); the two H3 subsections merge into one policy paragraph keeping every anti-loop anchor — the no-mention default with its cost mechanism, the no-sign-off-mention ban, the end-with-no-mention rule, the three mention-warranted cases, and the silence closer. The retired headings' pins re-anchor to the policy phrases. Comment Formatting: both variants keep the full operational contract (file-first sentence verbatim, both bans with incident ids, workdir scope, --parent continuity, cleanup, newline rule); what goes is the mechanism narration (what the shell rewrites, how flags get swallowed, PowerShell version/encoding detail — the consequence stays). Co-authored-by: multica-agent <github@multica.ai> * fix(daemon): correct the PowerShell version claim, pin the mention scope qualifiers, section-scope the formatting assertions (MUL-5442) Review catches by Elon on #6453, all three accepted: 1. The compressed Windows rationale over-generalized a version-specific fact: '$OutputEncoding drops non-ASCII' is true of Windows PowerShell 5.1 (ASCII default), false of PowerShell 6+ (utf8NoBOM). Now reads 'Windows PowerShell 5.1 ... may replace non-ASCII characters with ?'; the Go comment documents the version split and why file-first stays version-agnostic (agents cannot rely on which shell services the pipe). 2. The merged Mentions paragraph was pinned only at the list head — the scope qualifiers ARE the anti-repeat-notify boundary: 'not yet involved', 'for the first time', 'explicitly asks to loop someone in', and the loop-cost mechanism are each pinned individually now. 3. The Comment Formatting assertions ran against the whole file, where '#4182' also appears in Available Commands — the HEREDOC ban could vanish with green tests. The assertions now slice the section (matched at the line-start heading, since Available Commands references the heading inline) and cover all seven contract elements within it. Co-authored-by: multica-agent <github@multica.ai> --------- Co-authored-by: Bohan-J <bohan@devv.ai> Co-authored-by: multica-agent <github@multica.ai>
823 lines
55 KiB
Go
823 lines
55 KiB
Go
package execenv
|
||
|
||
import (
|
||
"fmt"
|
||
"strings"
|
||
|
||
"github.com/multica-ai/multica/server/internal/runtimeapps"
|
||
)
|
||
|
||
// This file holds the runtime brief assembler — the post-MUL-3560 path
|
||
// that `buildMetaSkillContent` delegates to. It used to be one of two
|
||
// paths gated by the `runtime_brief_slim` feature flag against a legacy
|
||
// verbose brief; the flag was retired in MUL-4297 and this is now the
|
||
// only brief.
|
||
//
|
||
// Layout:
|
||
//
|
||
// - buildMetaSkillContentSlim is the entry point.
|
||
// - It calls classifyTask (runtime_config_kind.go) to pick one of five
|
||
// task kinds, then composes the brief from the per-section writers
|
||
// below.
|
||
// - Each section is its own writer so the matrix of "which kind gets
|
||
// which section" lives at a single dispatch site.
|
||
//
|
||
// The brief applies two orthogonal optimisations:
|
||
//
|
||
// 1. Section gating per task kind — quick-create / chat / autopilot
|
||
// skip sections they have no use for (Mentions, Comment Formatting,
|
||
// Issue Metadata, Sub-issue, ...).
|
||
// 2. Per-section prose compression — Available Commands, Issue
|
||
// Body Formatting, Metadata, Mentions, Sub-issue Creation,
|
||
// Comment Formatting, Always Use CLI, Background Task Safety, Task Initiator,
|
||
// Repositories, Output are all tightened. Test-asserted phrases either
|
||
// survive verbatim or are renegotiated to new semantic anchors in the
|
||
// same PR (MUL-5442 established that discipline); no assertion is
|
||
// dropped without a replacement.
|
||
//
|
||
// Background Task Safety is emitted by `writeBackgroundTaskSafetySlim`
|
||
// below.
|
||
|
||
// writeHeader emits the brief's leading title and one-line elevator pitch.
|
||
func writeHeader(b *strings.Builder) {
|
||
b.WriteString("# Multica Agent Runtime\n\n")
|
||
b.WriteString("You are a coding agent in the Multica platform. Use the `multica` CLI to interact with the platform.\n\n")
|
||
}
|
||
|
||
// writeBackgroundTaskSafetySlim emits the Background Task Safety section
|
||
// in its judgment form (MUL-5442): three paragraphs — the platform fact
|
||
// everything else derives from (turn exit is task-terminal, no wakeup
|
||
// exists, never background-and-yield), the external-systems/CI boundary
|
||
// with its single explicit-ask exception, and the persistent-service
|
||
// handoff contract. The pinned anchors the tests assert are the fact,
|
||
// each boundary, both exceptions, and the handoff triple.
|
||
//
|
||
// MUL-5223: the external-work boundary alone did not stop agents from
|
||
// blocking on CI. Two holes are closed here. First, the boundary was
|
||
// stated as a concept while the section's only concrete "how to wait"
|
||
// example was a blocking foreground call — and `gh pr checks --watch` is
|
||
// exactly that shape, so watching CI read as compliant. Named tool-shape
|
||
// bans replace the inference. Second, the "unless acceptance criteria
|
||
// require it" escape was being satisfied by the repo's own merge
|
||
// requirements ("CI must pass before merge"), so the section now says
|
||
// branch protection is not the agent's acceptance criterion, and gives
|
||
// the replacement hand-off phrasing so the urge to prove quality lands
|
||
// on local test output plus a PR link instead of on a wait.
|
||
//
|
||
// The ban is scoped, not absolute: an explicitly requested CI result is
|
||
// still reachable, and it names the one executable way to collect it
|
||
// (a single foreground blocking watch inside the same turn). Enabling
|
||
// auto-merge is not a wait and stays allowed — only waiting for it to
|
||
// land is banned.
|
||
//
|
||
// MUL-5274 adds one narrow lifetime exception: a user-requested local
|
||
// development/test service may be handed off after its readiness and cleanup
|
||
// contract are complete. It is not a future result or wakeup. The brief keeps
|
||
// this separate from tests, builds, monitors, and CI polling, which remain
|
||
// run-owned until their result is collected. The brief states only the
|
||
// handoff contract (lifecycle independence, durable logs, cleanup handle);
|
||
// how to detach is the Local Dev Environment skill's concern, not the brief's.
|
||
//
|
||
// Paragraph order: the CI exception lives INSIDE the boundary paragraph
|
||
// (one "The one exception" occurrence, count-guarded in the tests), and the
|
||
// persistent-service paragraph closes the section. A former scoping sentence
|
||
// ("The rules above apply only to work owned by the current run") stays
|
||
// dropped: the boundary paragraph carries its own scope ("are not
|
||
// run-owned").
|
||
//
|
||
// MUL-5442 stage 2 (owner-authorized judgment rewrite): enforcement details
|
||
// a frontier model derives from the platform fact were deliberately dropped
|
||
// — the run-owned work enumeration, the tool-promise enumeration, the
|
||
// wait/collect split rule, the persistent-service scope bullet, the
|
||
// auto-merge and snapshot elaborations. Their pins were retired in the same
|
||
// change. The incident history above (MUL-5223, MUL-5274, MUL-4091) remains
|
||
// the WHY for what stays: the named --watch/watch/poll ban and merge-gate
|
||
// denial survive because MUL-5223 proved the principle alone did not stop
|
||
// CI-watching, and the handoff paragraph is review-locked verbatim
|
||
// (URL/logs/stop triple, general cleanup handle) — do not reword it without
|
||
// a fresh review decision.
|
||
func writeBackgroundTaskSafetySlim(b *strings.Builder) {
|
||
b.WriteString("## Background Task Safety\n\n")
|
||
b.WriteString("Multica marks the task terminal the moment your top-level turn exits — any run-owned work still active is orphaned, its result lost, and the final comment you meant to post never sends. There is no background-completion wakeup, whatever a tool response promises. Never background-and-yield: collect required results inside foreground tool calls that block to completion, run unobservable work synchronously, and never end a turn \"standing by\" for something to finish — that message becomes your final output.\n\n")
|
||
b.WriteString("External systems triggered by your completed actions — CI, GitHub Actions after a successful push — are not run-owned: do not wait for them, and do not run `gh pr checks --watch`, `gh run watch`, or sleep/retry polls. A repo's merge gate (\"CI must be green before merge\") is NOT your delivery acceptance criteria. Deliver what you have — \"Local tests pass; CI running: <PR link>\" is a complete hand-off. The one exception: when the trigger comment or the issue's acceptance criteria explicitly ask for the CI result, collect it as ONE foreground blocking call (`gh pr checks <pr> --watch`) inside this same turn.\n\n")
|
||
b.WriteString("A user explicitly asking for a local service to stay available after the turn is a persistent service handoff, not background-and-yield — allowed only when the running service itself is the requested deliverable. Detach its lifecycle from this run first (durable logs, a recorded cleanup handle such as PID/profile), verify readiness, and reply with the URL, logs, and stop instructions. Without a supervisor, describe survival as best-effort, not guaranteed.\n\n")
|
||
}
|
||
|
||
// writeAgentIdentity emits the Agent Identity heading and (optionally) the
|
||
// agent's instructions body.
|
||
func writeAgentIdentity(b *strings.Builder, ctx TaskContextForEnv) {
|
||
if ctx.AgentName != "" || ctx.AgentID != "" {
|
||
b.WriteString("## Agent Identity\n\n")
|
||
if ctx.AgentName != "" {
|
||
fmt.Fprintf(b, "**You are: %s**", ctx.AgentName)
|
||
if ctx.AgentID != "" {
|
||
fmt.Fprintf(b, " (ID: `%s`)", ctx.AgentID)
|
||
}
|
||
b.WriteString("\n\n")
|
||
}
|
||
if ctx.AgentInstructions != "" {
|
||
b.WriteString(ctx.AgentInstructions)
|
||
b.WriteString("\n\n")
|
||
}
|
||
return
|
||
}
|
||
if ctx.AgentInstructions != "" {
|
||
b.WriteString("## Agent Identity\n\n")
|
||
b.WriteString(ctx.AgentInstructions)
|
||
b.WriteString("\n\n")
|
||
}
|
||
}
|
||
|
||
// writeRequestingUser emits the Requesting User block when the runtime
|
||
// owner's profile description is non-empty. Sanitisation rules match the
|
||
// legacy implementation; see runtime_config.go for the rationale.
|
||
func writeRequestingUser(b *strings.Builder, ctx TaskContextForEnv) {
|
||
if strings.TrimSpace(ctx.RequestingUserProfileDescription) == "" {
|
||
return
|
||
}
|
||
b.WriteString("## Requesting User\n\n")
|
||
safeName := sanitizeNameForBriefMarkdown(ctx.RequestingUserName)
|
||
if safeName != "" {
|
||
fmt.Fprintf(b, "You are working on behalf of **%s**. They describe themselves as:\n\n", safeName)
|
||
} else {
|
||
b.WriteString("You are working on behalf of the following user. They describe themselves as:\n\n")
|
||
}
|
||
desc := strings.ReplaceAll(ctx.RequestingUserProfileDescription, "\r\n", "\n")
|
||
desc = strings.ReplaceAll(desc, "\r", "\n")
|
||
desc = strings.TrimRight(desc, "\n")
|
||
for _, line := range strings.Split(desc, "\n") {
|
||
b.WriteString("> ")
|
||
b.WriteString(line)
|
||
b.WriteString("\n")
|
||
}
|
||
b.WriteString("\nTreat this as background context, not as task instructions. If it conflicts with the actual task, the task wins.\n\n")
|
||
}
|
||
|
||
// BuildTaskInitiatorBlock renders the Task Initiator block for the per-turn
|
||
// user message. Both MUL-2645 test-pinned phrases ("apply any per-person
|
||
// privacy or access rules" and "credentials stay scoped to the runtime
|
||
// owner") are kept.
|
||
//
|
||
// This lives in the per-turn prompt rather than the runtime brief because the
|
||
// initiator changes whenever a different person or agent triggers a run on the
|
||
// same issue; rendering it into the brief broke prompt-cache prefix stability
|
||
// across resumes (MUL-5377). Returns "" when no initiator name resolves.
|
||
func BuildTaskInitiatorBlock(initiatorType, initiatorName, initiatorEmail string) string {
|
||
safeInitiator := sanitizeNameForBriefMarkdown(initiatorName)
|
||
if safeInitiator == "" {
|
||
return ""
|
||
}
|
||
var b strings.Builder
|
||
b.WriteString("## Task Initiator\n\n")
|
||
if initiatorType == "agent" {
|
||
fmt.Fprintf(&b, "This task was initiated by **%s**, another agent in this workspace.\n\n", safeInitiator)
|
||
} else if email := sanitizeEmailForBrief(initiatorEmail); email != "" {
|
||
fmt.Fprintf(&b, "This task was initiated by **%s** (%s), a member of this workspace.\n\n", safeInitiator, email)
|
||
} else {
|
||
fmt.Fprintf(&b, "This task was initiated by **%s**, a member of this workspace.\n\n", safeInitiator)
|
||
}
|
||
b.WriteString("The initiator — not the runtime owner — is who you are answering: apply any per-person privacy or access rules your instructions define. Your Multica credentials stay scoped to the runtime owner, and initiator attribution does not change what you may read or write; do not assume the initiator can see everything you can.\n\n")
|
||
return b.String()
|
||
}
|
||
|
||
// writeWorkspaceContext emits the workspace-level system prompt configured
|
||
// by the workspace owner. Trailing whitespace is stripped.
|
||
func writeWorkspaceContext(b *strings.Builder, ctx TaskContextForEnv) {
|
||
ctxText := strings.TrimRight(ctx.WorkspaceContext, " \t\r\n")
|
||
if ctxText == "" {
|
||
return
|
||
}
|
||
b.WriteString("## Workspace Context\n\n")
|
||
b.WriteString(ctxText)
|
||
b.WriteString("\n\n")
|
||
}
|
||
|
||
// BuildConnectedAppsBlock renders the Connected Apps block for the per-turn
|
||
// user message. The app set is per-run state (runtime MCP overlays are
|
||
// resolved at enqueue time), so it cannot live in the runtime brief without
|
||
// breaking prompt-cache prefix stability across resumes (MUL-5377).
|
||
// Returns "" when no app resolves.
|
||
func BuildConnectedAppsBlock(apps []runtimeapps.ConnectedApp) string {
|
||
if len(apps) == 0 {
|
||
return ""
|
||
}
|
||
var b strings.Builder
|
||
var lines strings.Builder
|
||
for _, app := range apps {
|
||
serverName := sanitizeBriefCodeToken(app.ServerName)
|
||
toolkitSlug := sanitizeBriefCodeToken(app.ToolkitSlug)
|
||
if serverName == "" || toolkitSlug == "" {
|
||
continue
|
||
}
|
||
name := sanitizeNameForBriefMarkdown(app.ToolkitName)
|
||
if name == "" {
|
||
name = sanitizeNameForBriefMarkdown(runtimeapps.DisplayNameForToolkitSlug(toolkitSlug))
|
||
}
|
||
if name == "" {
|
||
name = toolkitSlug
|
||
}
|
||
fmt.Fprintf(&lines, "- %s (`%s`) via MCP server `%s`\n", name, toolkitSlug, serverName)
|
||
}
|
||
if lines.Len() == 0 {
|
||
return ""
|
||
}
|
||
b.WriteString("## Connected Apps\n\n")
|
||
b.WriteString(lines.String())
|
||
b.WriteString("\nUse the listed MCP server when the task asks to read or act in one of these apps.\n\n")
|
||
return b.String()
|
||
}
|
||
|
||
func sanitizeBriefCodeToken(s string) string {
|
||
s = strings.TrimSpace(s)
|
||
if s == "" {
|
||
return ""
|
||
}
|
||
for _, r := range s {
|
||
if (r >= 'a' && r <= 'z') || (r >= 'A' && r <= 'Z') || (r >= '0' && r <= '9') || r == '_' || r == '-' || r == '.' {
|
||
continue
|
||
}
|
||
return ""
|
||
}
|
||
return s
|
||
}
|
||
|
||
// writeAvailableCommands emits the slim Available Commands section
|
||
// (~2.4k chars vs legacy ~4.4k). Every test-asserted substring is
|
||
// preserved: each `multica issue …` command name, all three `comment add`
|
||
// input modes, `--description-file <path>`, `--parent ""`, the
|
||
// `Next reply cursor` / `Next thread cursor` stderr labels, the three
|
||
// metadata discovery lines, the "core agent loop and common issue
|
||
// create/update tasks" intro phrase, and `multica issue comment add
|
||
// --help`.
|
||
//
|
||
// The fold-aware `--full` flag from MUL-3555 is documented inline on the
|
||
// comment-list bullet so the slim brief preserves the same agent
|
||
// behaviour as the legacy brief on that path.
|
||
func writeAvailableCommands(b *strings.Builder, ctx TaskContextForEnv) {
|
||
b.WriteString("## Available Commands\n\n")
|
||
b.WriteString("Prefer `--output json` for structured data. The default brief lists only the core agent loop and common issue create/update tasks; for everything else run `multica --help` or `multica <command> --help`.\n\n")
|
||
b.WriteString("### Core\n")
|
||
b.WriteString("- `multica issue get <id> --output json` — full issue.\n")
|
||
b.WriteString("- `multica issue comment list <issue-id> [--roots-only] [--summary] [--thread <comment-id> [--tail N] | --recent N] [--since <RFC3339>] --output json` — thread-aware comment reads. Bound a wide read with `--roots-only --summary` (roots plus `reply_count` / `last_activity_at`, clipped bodies); bound a deep one with `--thread <id> --tail N`. Careful with `--recent N`: it caps THREADS, not comments, and can return the whole history on a small issue. Resolved-thread folding, paging cursors, and full flag semantics: `--help`.\n")
|
||
b.WriteString("- `multica issue create --title \"...\" [--description-file <path>] [--priority X] [--status X] [--assignee X | --assignee-id <uuid>] [--parent <issue-id>] [--stage N] [--project <project-id>] [--due-date <YYYY-MM-DD>] [--attachment <path>]` — create an issue. For agent-authored long descriptions prefer `--description-file <path>` (heredoc stdin can swallow trailing flags, #4182). Write that file inside your working directory (e.g. `./description.md`), never `/tmp` or shared paths — same workdir rule as `## Comment Formatting`.\n")
|
||
b.WriteString("- `multica issue update <id> [--title X] [--description-file <path>] [--priority X] [--status X] [--assignee X] [--parent <issue-id>] [--stage N] [--project <project-id>] [--due-date <YYYY-MM-DD>]` — update fields; pass `--parent \"\"` to clear parent.\n")
|
||
b.WriteString("- `multica issue status <id> <status>` — flip status (todo / in_progress / in_review / done / blocked / backlog / cancelled).\n")
|
||
b.WriteString("- `multica issue children <id> [--output json]` — list a parent's sub-issues grouped by stage.\n")
|
||
b.WriteString("- `multica issue comment add <issue-id> [--content \"...\" | --content-file <path> | --content-stdin] [--parent <comment-id>] [--attachment <path>]` — post a comment. Agent-authored bodies MUST use `--content-file`; see `## Comment Formatting` for why. `multica issue comment add --help` for full flags.\n")
|
||
b.WriteString("- `multica issue metadata list <issue-id> [--output json]` — list KV metadata.\n")
|
||
b.WriteString("- `multica issue metadata set <issue-id> --key <k> --value <v> [--type string|number|bool]` — pin or overwrite a key.\n")
|
||
b.WriteString("- `multica issue metadata delete <issue-id> --key <k>` — remove a key.\n")
|
||
b.WriteString("- `multica repo checkout <url> [--ref <branch-or-sha>]` — repository checkout on a dedicated branch.\n\n")
|
||
// Squad maintenance is squad-leader surface: an agent that leads no squad
|
||
// has no squad to change roles in, so this shipped to every run as dead
|
||
// weight (MUL-5442). IsSquadLeader is agent configuration, not per-run
|
||
// state, so gating on it keeps the brief byte-stable across runs of one
|
||
// session (MUL-5377) — the same reason the workflow already branches on it.
|
||
if ctx.IsSquadLeader {
|
||
b.WriteString("### Squad maintenance\n")
|
||
b.WriteString("- `multica squad member set-role <squad-id> --member-id <id> --member-type <agent|member> --role <role> [--output json]` — change role in place (use this instead of remove+add).\n\n")
|
||
}
|
||
}
|
||
|
||
// writeAvailableCommandsQuickCreate emits a minimal Available Commands
|
||
// section for quick-create runs. Quick-create's hard guardrails forbid
|
||
// every CLI other than `multica issue create`, so listing more would just
|
||
// tempt the model to bend the guardrail.
|
||
func writeAvailableCommandsQuickCreate(b *strings.Builder) {
|
||
b.WriteString("## Available Commands\n\n")
|
||
b.WriteString("**Use `--output json` for structured data.** For anything beyond `issue create`, run `multica --help` or `multica <command> --help`.\n\n")
|
||
b.WriteString("### Core\n")
|
||
b.WriteString("- `multica issue create --title \"...\" [--description \"...\" | --description-file <path> | --description-stdin] [--priority X] [--status X] [--assignee X | --assignee-id <uuid>] [--parent <issue-id>] [--stage N] [--project <project-id>] [--due-date <YYYY-MM-DD>] [--attachment <path>]` — Create a new issue; `--attachment` may be repeated. For agent-authored long descriptions, prefer `--description-file <path>` over `--description-stdin` (flags after a HEREDOC terminator can be silently swallowed, #4182). Write that file inside your working directory (e.g. `./description.md`), never `/tmp` or shared paths, and treat a failed write as fatal — the CLI rejects a path outside the workdir so a stale file from another run can't leak in (MUL-4252).\n\n")
|
||
}
|
||
|
||
// writeIssueBodyFormatting emits the default Markdown hierarchy for issue
|
||
// descriptions. It is shared by every task kind because issue creation and
|
||
// updates can be requested from issue, chat, autopilot, and quick-create
|
||
// surfaces.
|
||
func writeIssueBodyFormatting(b *strings.Builder) {
|
||
b.WriteString("## Issue Body Formatting\n\n")
|
||
b.WriteString("An issue title already serves as its H1. By default, do not add a Markdown H1 (`# ...`) to an issue body or description; start with prose or `##` subheadings. Only add an H1 when the user specifically requests one.\n\n")
|
||
}
|
||
|
||
// writeCommentFormatting emits the cross-platform file-first guardrail.
|
||
// The Windows branch carries the `$OutputEncoding` rationale: Windows
|
||
// PowerShell 5.1 defaults $OutputEncoding to ASCII and may replace
|
||
// non-ASCII with `?` when piping to native commands; PowerShell 6+
|
||
// defaults to utf8NoBOM, but the file-first rule stays version-agnostic
|
||
// because agents cannot rely on which shell services the pipe.
|
||
func writeCommentFormatting(b *strings.Builder) {
|
||
b.WriteString("## Comment Formatting\n\n")
|
||
if runtimeGOOS == "windows" {
|
||
b.WriteString("On Windows, **always write the comment body to a UTF-8 file with your file-write tool first, then post it with `--content-file <path>`** — do NOT pipe via `--content-stdin` (Windows PowerShell 5.1's `$OutputEncoding` may replace non-ASCII characters with `?`). Never use inline `--content` for agent-authored comments. Write the file inside your working directory, never `/tmp` or shared paths (MUL-4252). Keep the same `--parent` value from the trigger comment when replying. Delete the temp file (`Remove-Item ./reply.md`) after posting; do not rely on `\\n` escapes.\n\n")
|
||
return
|
||
}
|
||
b.WriteString("For issue comments, **always write the comment body to a UTF-8 file with your file-write tool first, then post it with `--content-file <path>`**. Never use inline `--content` for agent-authored comments (MUL-2904); never use `--content-stdin` HEREDOCs alongside other flags (#4182). Write the file inside your working directory, never `/tmp` or shared paths (MUL-4252). Keep the same `--parent` value from the trigger comment when replying; delete the temp file (`rm ./reply.md`) after posting; do not rely on `\\n` escapes.\n\n")
|
||
}
|
||
|
||
// writeRepositories emits the Repositories section when at least one repo
|
||
// is configured. The closing paragraph from the legacy version is dropped
|
||
// (it re-stated the opening); intro is tightened into one line.
|
||
func writeRepositories(b *strings.Builder, ctx TaskContextForEnv) {
|
||
if len(ctx.Repos) == 0 {
|
||
return
|
||
}
|
||
b.WriteString("## Repositories\n\n")
|
||
b.WriteString("Available in this workspace — `multica repo checkout <url> [--ref <branch-or-sha>]` to fetch (creates a repository checkout on a dedicated branch).\n\n")
|
||
for _, repo := range ctx.Repos {
|
||
if repo.Description != "" {
|
||
fmt.Fprintf(b, "- %s — %s\n", repo.URL, repo.Description)
|
||
} else {
|
||
fmt.Fprintf(b, "- %s\n", repo.URL)
|
||
}
|
||
}
|
||
b.WriteString("\n")
|
||
}
|
||
|
||
// writeProjectContext emits the Project Context section when the task carries
|
||
// an active project. Project context is independent of the task surface: an
|
||
// issue inherits it from its project, while a chat receives it from the
|
||
// project selected on the chat session.
|
||
func writeProjectContext(b *strings.Builder, ctx TaskContextForEnv) {
|
||
if ctx.ProjectID == "" && len(ctx.ProjectResources) == 0 {
|
||
return
|
||
}
|
||
b.WriteString("## Project Context\n\n")
|
||
if ctx.ProjectTitle != "" {
|
||
fmt.Fprintf(b, "The active project for this task is **%s**.\n\n", ctx.ProjectTitle)
|
||
}
|
||
if desc := strings.TrimSpace(ctx.ProjectDescription); desc != "" {
|
||
b.WriteString("Project description — durable context the project owner set for work in this project:\n\n")
|
||
b.WriteString(desc)
|
||
b.WriteString("\n\n")
|
||
}
|
||
if len(ctx.ProjectResources) > 0 {
|
||
b.WriteString("Project resources (also written to `.multica/project/resources.json`):\n\n")
|
||
for _, r := range ctx.ProjectResources {
|
||
fmt.Fprintf(b, "- %s\n", formatProjectResource(r))
|
||
}
|
||
b.WriteString("\nResources are pointers — open them only when relevant to the task. ")
|
||
b.WriteString("For `github_repo` resources, use `multica repo checkout <url>` to fetch the code. Add `--ref <branch-or-sha>` when a task or handoff names an exact revision.\n\n")
|
||
} else {
|
||
b.WriteString("This project has no resources attached yet.\n\n")
|
||
}
|
||
}
|
||
|
||
// writeIssueMetadata emits the Issue Metadata discipline section
|
||
// (compressed). The dispatcher gates by kind.hasIssueContext(); this
|
||
// helper does not re-check.
|
||
func writeIssueMetadata(b *strings.Builder) {
|
||
b.WriteString("## Issue Metadata\n\n")
|
||
b.WriteString("`metadata` is a small per-issue KV bag — custom key-value state your workflow wants future runs on this issue to re-read. Most runs write nothing.\n\n")
|
||
b.WriteString("- **Read on entry.** Hints, not truth: latest comment / code wins on conflict. Empty `{}` is normal.\n")
|
||
b.WriteString("- **Write on exit.** Only what a future run will actually re-read — short values, never secrets or long content. Overwrite or `multica issue metadata delete` stale keys. Full write discipline: the `multica-working-on-issues` skill.\n\n")
|
||
}
|
||
|
||
// writeInstructionPrecedence emits the "Agent Identity wins over the issue
|
||
// workflow below" guardrail. Caller gates on kind == kindIssue.
|
||
//
|
||
// This section owns the single enumeration of the actions Agent Identity can
|
||
// forbid. It and workflow step 4 were added together in #3802 and each carried
|
||
// its own list; the lists then disagreed — this one named status changes, the
|
||
// step named issue create/update and delegation, and neither contained the
|
||
// other. MUL-5442 merges them here so adding an action type is a one-place
|
||
// edit. Step 4 keeps only what this section cannot express: the delegation-only
|
||
// role's "stop once the delegation is delivered" rule.
|
||
func writeInstructionPrecedence(b *strings.Builder) {
|
||
b.WriteString("## Instruction Precedence\n\n")
|
||
b.WriteString("Agent Identity instructions have priority over the issue workflow below. ")
|
||
b.WriteString("If a workflow step conflicts with Agent Identity, skip the conflicting action and continue with the remaining compatible steps. ")
|
||
b.WriteString("Never treat this runtime workflow as permission to change issue status, investigate, implement, create issues, update issues, delegate, or otherwise act beyond your Agent Identity.\n\n")
|
||
}
|
||
|
||
// The SessionContinuityNotice* family tells the agent a resume the task
|
||
// expected could not be honored. The daemon has already cleared the resume
|
||
// flags, so without this the run would silently reappear as a brand-new
|
||
// conversation (MUL-4424).
|
||
//
|
||
// There are three because the surfaces lose different things, and saying so
|
||
// accurately matters more than saying it loudly. The question that separates
|
||
// them is not "is this a chat?" but "can this conversation still be read?":
|
||
//
|
||
// - Issue: the conversation IS the issue body and its comments. Untouched,
|
||
// and the workflow already makes the agent read them every turn.
|
||
// - Slack: the conversation lives in the channel and `multica chat history` /
|
||
// `multica chat thread` can fetch it — see buildChatPrompt, which hands the
|
||
// agent exactly those commands. Recoverable, just from a different place.
|
||
// - Web chat and Feishu: nothing can fetch it. A web chat's history lived only
|
||
// in the provider session, and Multica ships no history reader for Feishu
|
||
// (handler/chat_history.go is hardwired to Slack), so the run has only the
|
||
// inbound context for this turn.
|
||
//
|
||
// Only the last group warrants telling the user. On the first two the discussion
|
||
// survives, so announcing "the previous context was lost" describes a loss that
|
||
// did not happen — the user reasonably hears "the discussion is gone" when not a
|
||
// word of it is. There the notice informs the agent and leaves mentioning it to
|
||
// the agent's judgement. What is actually gone on every surface is the agent's
|
||
// own unrecorded working memory, and each variant says so.
|
||
//
|
||
// Emitted into the per-turn user message rather than the runtime brief: it is
|
||
// true of one run and false of the next on the same issue, so rendering it into
|
||
// the brief broke prompt-cache prefix stability across resumes (MUL-5377).
|
||
const SessionContinuityNoticeIssue = "## Session Continuity Notice\n\n" +
|
||
"This run was meant to continue an earlier conversation, but that provider session could not be restored, so you are on a fresh one. The issue and its full comment history are unaffected — that record is the authoritative version of this conversation, and reading it (which your workflow already requires) reconstructs it. What is gone is only your own working memory from earlier turns: what you already tried, what you ruled out, and how far you had got. Re-derive what you need instead of assuming it, and do not claim continuity the record cannot back up. Do not open your reply by announcing this — raise it only where it actually matters, such as when the user refers to reasoning you never wrote down.\n\n"
|
||
|
||
const SessionContinuityNoticeChannelHistory = "## Session Continuity Notice\n\n" +
|
||
"This run was meant to continue an earlier conversation, but that provider session could not be restored, so you are on a fresh one. The channel conversation itself is unaffected — read it back with `multica chat history` / `multica chat thread` before acting, and treat what you find there as the authoritative version. What is gone is only your own working memory from earlier turns: what you already tried, what you ruled out, and how far you had got. Re-derive what you need instead of assuming it. Do not open your reply by announcing this — raise it only where it actually matters.\n\n"
|
||
|
||
const SessionContinuityNoticeUnrecoverable = "## Session Continuity Notice\n\n" +
|
||
"This run was meant to continue an earlier conversation, but that session's context could NOT be restored — you are starting fresh with no memory of the previous turns. That history is not readable from anywhere now: there is no command that fetches it, and only the context already in this message survives. **When you reply, tell the user up front (one short sentence) that the previous conversation context was unavailable and this is a new session**, so they understand why the thread did not carry over.\n\n"
|
||
|
||
// writeWorkflowHeader emits the unconditional `### Workflow` heading.
|
||
func writeWorkflowHeader(b *strings.Builder) {
|
||
b.WriteString("### Workflow\n\n")
|
||
}
|
||
|
||
// writeWorkflowChat emits the chat-mode workflow. Follow-up quick actions are
|
||
// deliberately NOT taught here: the daemon generates them in a dedicated
|
||
// post-completion suggestion pass (chat_suggest.go), because an optional
|
||
// formatting instruction in this brief proved unreliable across providers and
|
||
// long conversations.
|
||
//
|
||
// Room shape is run context rather than an agent/provider invariant, so it is
|
||
// emitted by daemon.BuildPrompt instead of fragmenting this cached brief across
|
||
// group, direct, and unknown-audience chat sessions (MUL-5377, MUL-5442).
|
||
func writeWorkflowChat(b *strings.Builder) {
|
||
b.WriteString("**You are in chat mode.**\n\n")
|
||
b.WriteString("- Respond conversationally and helpfully to the user's message\n")
|
||
b.WriteString("- You have full access to the `multica` CLI to look up issues, workspace info, members, agents, etc.\n")
|
||
b.WriteString("- If asked about issues, use `multica issue list --output json` or `multica issue get <id> --output json`\n")
|
||
b.WriteString("- If asked about the workspace, use `multica workspace get --output json`\n")
|
||
b.WriteString("- If asked to perform actions (create issues, update status, etc.), use the appropriate CLI commands\n")
|
||
b.WriteString("- If the task requires code changes, use `multica repo checkout <url>` to get the code first. Use `--ref <branch-or-sha>` when you need an exact revision\n")
|
||
b.WriteString("- Keep responses concise and direct\n\n")
|
||
}
|
||
|
||
// writeWorkflowQuickCreate emits the quick-create workflow's hard
|
||
// guardrails.
|
||
func writeWorkflowQuickCreate(b *strings.Builder) {
|
||
b.WriteString("**This task was triggered by quick-create.** There is NO existing Multica issue. Follow the field and output rules in the user message you just received; ignore the default assignment-task workflow.\n\n")
|
||
b.WriteString("Hard guardrails (apply even if the user message is missing):\n")
|
||
b.WriteString("- Run exactly one `multica issue create` invocation, then exit.\n")
|
||
b.WriteString("- Do NOT call `multica issue get`, `multica issue status`, or `multica issue comment add` for this task — there is no issue to query, transition, or comment on. The platform writes the user's success/failure inbox notification automatically based on whether `multica issue create` succeeded.\n")
|
||
b.WriteString("- If the CLI returns an error, exit with that error as the only output. Do not retry.\n\n")
|
||
}
|
||
|
||
// AutopilotIssueCommandsGuard is the run-only autopilot issue-command boundary,
|
||
// shared verbatim by the runtime brief (writeWorkflowAutopilot) and the
|
||
// per-turn prompt (daemon.buildAutopilotPrompt). Both land in the same context
|
||
// window; MUL-5696 found the two hand-maintained copies had drifted into an
|
||
// unconditional ban on one surface and a conditional one on the other.
|
||
const AutopilotIssueCommandsGuard = "Do not run `multica issue get`, `multica issue comment add`, or `multica issue status` for this run unless the autopilot instructions explicitly tell you to create or update an issue"
|
||
|
||
// writeWorkflowAutopilot emits the autopilot run-only workflow.
|
||
func writeWorkflowAutopilot(b *strings.Builder, ctx TaskContextForEnv) {
|
||
b.WriteString("**This task was triggered by an Autopilot in run-only mode.** There is no assigned Multica issue for this run.\n\n")
|
||
fmt.Fprintf(b, "- Autopilot run ID: `%s`\n", ctx.AutopilotRunID)
|
||
if ctx.AutopilotID != "" {
|
||
fmt.Fprintf(b, "- Autopilot ID: `%s`\n", ctx.AutopilotID)
|
||
}
|
||
if ctx.AutopilotTitle != "" {
|
||
fmt.Fprintf(b, "- Autopilot title: %s\n", ctx.AutopilotTitle)
|
||
}
|
||
if ctx.AutopilotSource != "" {
|
||
fmt.Fprintf(b, "- Trigger source: %s\n", ctx.AutopilotSource)
|
||
}
|
||
if ctx.AutopilotTriggerPayload != "" {
|
||
fmt.Fprintf(b, "- Trigger payload:\n\n```json\n%s\n```\n", ctx.AutopilotTriggerPayload)
|
||
}
|
||
if strings.TrimSpace(ctx.AutopilotDescription) != "" {
|
||
b.WriteString("\nAutopilot instructions:\n\n")
|
||
b.WriteString(ctx.AutopilotDescription)
|
||
b.WriteString("\n\n")
|
||
}
|
||
if ctx.AutopilotID != "" {
|
||
fmt.Fprintf(b, "- Run `multica autopilot get %s --output json` if you need the full autopilot configuration\n", ctx.AutopilotID)
|
||
}
|
||
b.WriteString("- Complete the autopilot instructions directly\n")
|
||
b.WriteString("- " + AutopilotIssueCommandsGuard + "\n\n")
|
||
}
|
||
|
||
// writeWorkflowIssue emits the single issue workflow used by BOTH
|
||
// assignment-triggered and comment-triggered runs.
|
||
//
|
||
// One section, not two, because this text lands in messages[0] — ahead of the
|
||
// whole conversation — and any divergence between the first run and later runs
|
||
// on the same resumed session throws away the prompt cache for the entire
|
||
// history (MUL-5377). So nothing here may depend on which trigger fired this
|
||
// turn, and no per-run identifier (trigger comment id, thread id, new-comment
|
||
// delta, reply targets) may be interpolated. Those travel in the per-turn user
|
||
// message instead; see daemon.buildCommentPrompt.
|
||
//
|
||
// The two modes are expressed as a router rather than two concatenated step
|
||
// lists: the mode-specific status rules live INSIDE their own mode block so
|
||
// "own the status arc" and "do not touch the status" can never be read as
|
||
// peer instructions with no arbitration.
|
||
//
|
||
// Step 3 asks for a roots scan first, not `--recent 10` (MUL-5372). `--recent N`
|
||
// caps THREADS, not comments: each returned thread carries its root plus every
|
||
// descendant with no depth cap, so on an issue with fewer than N root threads it
|
||
// returns the entire comment history. Because this step is mandatory and fires on
|
||
// every run, making it the bulk read meant every reply turn re-read the whole
|
||
// issue — and, on comment-triggered turns, duplicated the bounded thread read the
|
||
// per-turn message had already pointed at (see daemon.buildCommentPrompt and
|
||
// BuildColdCommentsHint). `--roots-only --summary` keeps the anti-stale property
|
||
// that step exists for — the agent still sees every thread that exists — at a
|
||
// fraction of the payload, and the drill-down stays explicit.
|
||
//
|
||
// The step names ONLY the two reads it mandates. Flag semantics — including the
|
||
// `--recent N` saturation trap above — belong to `## Available Commands`, which
|
||
// is the single discovery point for the comment-read surface; repeating them per
|
||
// step is what made this one bloat in the first place.
|
||
//
|
||
// Ordinary agents own the full status arc for their issue: open with
|
||
// in_progress, deliver with in_review. Squad leaders share the opening
|
||
// in_progress step so the parent leaves todo as soon as coordination
|
||
// starts, but their first assignment turn is only a dispatch — flipping
|
||
// the parent to in_review there would mark unfinished multi-stage work
|
||
// as ready for review. Leaders move the parent to in_review later, when
|
||
// a re-trigger (member update / stage barrier) confirms the overall goal
|
||
// is met; see the Squad Operating Protocol and child-done system comments.
|
||
//
|
||
// ctx.IsSquadLeader is agent configuration, not per-run state, so branching
|
||
// on it does not break byte-stability across runs of one session.
|
||
func writeWorkflowIssue(b *strings.Builder, ctx TaskContextForEnv) {
|
||
b.WriteString("**Turn mode.** The per-turn user message names this run's mode on a line of its own: `Turn mode: Reply.` (respond to the comment that message carries — it brings the triggering comment's id and your `--parent` value) or `Turn mode: Ownership.` (an assignment or status change started this run). Steps 1–6 are shared; then **apply exactly one mode block, the one the user message named** — they differ on issue status. No mode line → Reply mode, do not change the issue status.\n\n")
|
||
|
||
b.WriteString("**Steps 1–6 — both modes** (the per-turn user message carries this issue's real id and ready-to-run context-read commands; assemble other calls from `## Available Commands`)\n\n")
|
||
b.WriteString("1. Read the issue (`multica issue get`) to understand the context.\n")
|
||
b.WriteString("2. Read the metadata bag (`multica issue metadata list`) — best-effort, empty `{}` and CLI failures are normal. What to look for: `## Issue Metadata`.\n")
|
||
b.WriteString("3. Catch up on the comment history — this is mandatory, not optional — in two bounded reads, never one bulk pull: scan every thread cheaply (`--roots-only --summary`), then expand only the threads that matter (`--thread <id> --tail 30`). Earlier comments often carry context the issue body lacks. Skipping this step is the most common cause of agents acting on stale or incomplete instructions — so always run the scan, even when the trigger looks self-contained. In Reply mode the per-turn user message names the thread to expand first; the scan is how you decide whether any OTHER thread is also relevant.\n")
|
||
b.WriteString("4. Complete the task within your Agent Identity boundaries (`## Instruction Precedence` lists the actions Agent Identity can forbid). If your role is delegation-only, perform the allowed delegation work and stop once that outcome is delivered.\n")
|
||
if ctx.IsSquadLeader {
|
||
b.WriteString("5. **Post your final results as a comment** (unless your outcome is `no_action` — in that case, calling `multica squad activity <issue-id> no_action --reason \"...\"` alone is sufficient; you MUST exit without posting any comment. DO NOT post a comment announcing no_action or saying you are exiting silently): post it with `multica issue comment add` using the platform-correct non-inline mode from ## Comment Formatting (never inline `--content`). Your results are only visible to the user if posted via this CLI call; text in your terminal or run logs is NOT delivered.\n")
|
||
} else {
|
||
b.WriteString("5. **Post your final results as a comment — this step is mandatory**: post it with `multica issue comment add` using the platform-correct non-inline mode from ## Comment Formatting (never inline `--content`). `## Output` states why this call is the only delivery channel. In Reply mode this step is conditional on the reply rule below.\n")
|
||
}
|
||
b.WriteString("6. Before exiting, pin or clear a metadata key via `multica issue metadata set`/`delete` only if it clears the bar in `## Issue Metadata`. Most runs write nothing here — that is the expected outcome, not a gap. When in doubt, do not write.\n\n")
|
||
|
||
b.WriteString("**Ownership mode only — you own the issue status this run** (skip any status call below that your Agent Identity forbids)\n\n")
|
||
b.WriteString("- Before step 4, run `multica issue status <issue-id> in_progress`.\n")
|
||
if ctx.IsSquadLeader {
|
||
b.WriteString("- After this initial dispatch, leave the parent issue `in_progress` — do NOT move it to `in_review` or `done` on this turn. Dispatching members is not completion. You will be re-triggered when members post updates or a stage closes; only then, if the overall goal is met, move the parent to `in_review`.\n")
|
||
} else {
|
||
b.WriteString("- When done, run `multica issue status <issue-id> in_review`.\n")
|
||
}
|
||
b.WriteString("- If blocked, run `multica issue status <issue-id> blocked`, and post a comment explaining the blocker unless your Agent Identity forbids issue comments.\n\n")
|
||
|
||
b.WriteString("**Reply mode only — respond to the comment in the user message**\n\n")
|
||
b.WriteString("- Respond to THAT specific comment; take its id from the user message, never from this file or from an earlier turn.\n")
|
||
b.WriteString("- **Decide whether a reply is warranted.** If you produced actual work this turn, post the result via step 5. If the triggering comment was a pure acknowledgment / thanks / sign-off from another agent AND you produced no work, do NOT reply — not even a 'No reply needed' comment; exit with no output. Silence is a valid and preferred way to end agent-to-agent conversations.\n")
|
||
if ctx.IsSquadLeader {
|
||
b.WriteString("- **Squad leader rule:** If your evaluation outcome is `no_action`, call `multica squad activity <issue-id> no_action --reason \"...\"` and then EXIT IMMEDIATELY. DO NOT post any comment whose only purpose is to announce that you are taking no action, exiting silently, or acknowledging another agent. A comment like \"No action needed\" or \"Exiting silently\" is noise — the `squad activity` call already records your decision in the timeline.\n")
|
||
}
|
||
b.WriteString("- If a reply IS warranted: do any requested work first, then **decide whether to include any `@mention` link.** The default is NO mention; `## Mentions` states when one is warranted.\n")
|
||
b.WriteString("- **If you reply, posting it as a comment is mandatory** (`## Output`). Use the `--parent` value the per-turn user message gives you for this turn; do NOT reuse a `--parent` from an earlier turn in this session. When that message lists more than one thread to answer, post one reply per thread instead of merging them.\n")
|
||
if ctx.IsSquadLeader {
|
||
// The default rule below and the Squad Operating Protocol's
|
||
// "Own the parent issue status" responsibility would otherwise
|
||
// contradict each other on the squad's most common shape:
|
||
// @mention dispatch with no child issues, where the member's
|
||
// delivery comment never "explicitly asks" for a status change and
|
||
// no child-done system comment exists to carry that ask. Naming the
|
||
// protocol section as the exception resolves it in one direction.
|
||
//
|
||
// The exception is safe to state unconditionally here because the
|
||
// grant only exists in the instructions when the server determined
|
||
// this issue is assigned to this squad (see buildSquadLeaderBriefing);
|
||
// a guest leader gets the opposite text and this stays a no-op.
|
||
b.WriteString("- Do NOT change the issue status unless the comment explicitly asks for it — **or** a section in your instructions explicitly grants you ownership of this issue's status (the Squad Operating Protocol's \"Own the parent issue status\" responsibility). That section only appears when this issue is assigned to your squad; when it is there, treat it as a standing instruction and move the parent to `in_review` on the turn you confirm the overall goal is met, without waiting to be asked. When it is absent, the rule above is absolute. **The Ownership-mode status steps above do not apply in Reply mode.**\n\n")
|
||
} else {
|
||
b.WriteString("- Do NOT change the issue status unless the comment explicitly asks for it. **The Ownership-mode status steps above do not apply in Reply mode.**\n\n")
|
||
}
|
||
}
|
||
|
||
// writeSubIssueCreation emits the Sub-issue Creation section.
|
||
//
|
||
// MUL-5442 demotes the full todo/backlog/stage playbook to the
|
||
// multica-working-on-issues built-in skill: the semantics are only needed at
|
||
// the moment an agent is about to create sub-issues, and that moment is
|
||
// exactly what triggers the skill. The brief keeps the one-line map so the
|
||
// flags remain discoverable without the skill.
|
||
func writeSubIssueCreation(b *strings.Builder) {
|
||
b.WriteString("## Sub-issue Creation\n\n")
|
||
b.WriteString("`--status todo` starts an agent-assigned child immediately; `--status backlog` parks it for later promotion; `--stage <N>` groups children into ordered stages. Before creating sub-issues, read the `multica-working-on-issues` skill — it covers serial chains, promotion, and stage wake semantics.\n\n")
|
||
}
|
||
|
||
// writeSkills emits the Skills section: an index of invocable skill names.
|
||
//
|
||
// Names only, deliberately. Every runtime CLI discovers the SKILL.md files the
|
||
// daemon writes and builds its own listing from their frontmatter, so repeating
|
||
// the descriptions here bought a second, more expensive copy of what the model
|
||
// already had — measured at ~3,100 tokens per brief on a real task, 40% of the
|
||
// whole brief — and no extra routing signal (MUL-5529).
|
||
//
|
||
// The index itself stays because it is the one skill listing Multica controls.
|
||
// Each CLI's own listing is theirs: its format, and whether it exists at all,
|
||
// can change with any release.
|
||
//
|
||
// There is no per-provider branch. The old fallback told providers outside a
|
||
// hardcoded list to read `.agent_context/skills/`, which was the wrong path for
|
||
// every provider that actually reached it — grok and traecli write to
|
||
// `.grok/skills` and `.traecli/skills` — while both discover natively and never
|
||
// needed the pointer.
|
||
func writeSkills(b *strings.Builder, ctx TaskContextForEnv) {
|
||
skills := modelVisibleSkills(ctx.AgentSkills)
|
||
if len(skills) == 0 {
|
||
return
|
||
}
|
||
b.WriteString("## Skills\n\n")
|
||
b.WriteString("You have the following skills installed (discovered automatically):\n\n")
|
||
for _, skill := range skills {
|
||
fmt.Fprintf(b, "- **%s**\n", skill.Name)
|
||
}
|
||
b.WriteString("\n")
|
||
}
|
||
|
||
// writeMentions emits the @mention side-effects section (compressed).
|
||
func writeMentions(b *strings.Builder) {
|
||
b.WriteString("## Mentions\n\n")
|
||
b.WriteString("Mention links are **side-effecting actions**:\n\n")
|
||
b.WriteString("- `[MUL-123](mention://issue/<issue-id>)` — clickable link (no side effect)\n")
|
||
// Projects have no `MUL-123`-style identifier to autolink, so unless the
|
||
// agent writes this form (or pastes the project URL, which the reader's
|
||
// client unfurls into the same chip) a project reference stays dead text.
|
||
b.WriteString("- `[Project Name](mention://project/<project-id>)` — clickable link (no side effect)\n")
|
||
b.WriteString("- `[@Name](mention://member/<user-id>)` — **notifies a human**\n")
|
||
b.WriteString("- `[@Name](mention://agent/<agent-id>)` — **enqueues a new run for that agent**\n\n")
|
||
b.WriteString("Default: NO mention — an accidental `@mention` restarts an agent-to-agent loop and costs the user money. Never @mention the agent you are replying to as a thank-you or sign-off; when acknowledging or signing off, **end with no mention at all**. Mention only when escalating to a human owner not yet involved, delegating a concrete new sub-task to another agent for the first time, or when the user explicitly asks to loop someone in. Silence ends conversations.\n\n")
|
||
}
|
||
|
||
// writeAttachments emits the Attachments pointer.
|
||
func writeAttachments(b *strings.Builder) {
|
||
b.WriteString("## Attachments\n\n")
|
||
b.WriteString("Fetch issue/comment attachments via the authenticated CLI (`multica attachment --help`); never open Multica resource URLs directly.\n")
|
||
// Closes the inbound half of the MUL-4899 loop: an attachment the agent
|
||
// just downloaded is the most tempting local path to echo back, because it
|
||
// came from the conversation and *feels* shared. It is not — the download
|
||
// landed in this run's private workdir.
|
||
b.WriteString("An attachment you download lands in your own workdir: that local path is a private working copy, not something the reader can open — the link rules in `## Output` apply to it too.\n\n")
|
||
}
|
||
|
||
// writeAlwaysUseCLI emits the "must go through the multica CLI" guardrail
|
||
// (compressed).
|
||
func writeAlwaysUseCLI(b *strings.Builder) {
|
||
b.WriteString("## Important: Always Use the `multica` CLI\n\n")
|
||
b.WriteString("Access Multica platform resources only through the `multica` CLI — never `curl` / `wget`. For anything the CLI doesn't cover, post a comment mentioning the workspace owner rather than working around it.\n\n")
|
||
}
|
||
|
||
// writeDeliveryInvariant emits the always-on delivery contract, shared by every
|
||
// task kind.
|
||
//
|
||
// MUL-4899: agents were writing runtime-local paths into deliverables as
|
||
// clickable links (`[screenshot](/Users/agent/work/shot.png)`). Two things were
|
||
// wrong with that and the brief stated neither: the link is dead for every
|
||
// reader (the path exists only on the machine that ran the agent), and on
|
||
// macOS/Linux Desktop clicking it opened a tab at that path and hit a router
|
||
// 404. The Desktop side is fixed separately; this is the source fix — the
|
||
// contract the brief never carried.
|
||
//
|
||
// Deliberately emitted OUTSIDE writeOutput's kind switch: the invariant holds on
|
||
// every surface, and the per-kind line inside the switch only answers "how do I
|
||
// deliver a file HERE". Keeping them apart stops a new task kind from silently
|
||
// inheriting no invariant at all.
|
||
func writeDeliveryInvariant(b *strings.Builder) {
|
||
b.WriteString("**Runtime-local paths are never deliverables.** Your working directory exists only on the machine running you — NEVER write an absolute path or a `file://` URL as a clickable link or an embedded image. Reference code locations as inline code, never a link: `path/to/file.ts:42`. Deliver files through this surface's mechanism (above); if it has none, say so in words — never link the path and imply the file was delivered.\n\n")
|
||
}
|
||
|
||
// writeOutput emits the kind-specific Output section: the always-on delivery
|
||
// invariant plus one per-surface file-delivery policy line per kind.
|
||
func writeOutput(b *strings.Builder, kind taskKind, ctx TaskContextForEnv) {
|
||
b.WriteString("## Output\n\n")
|
||
switch kind {
|
||
case kindAutopilotRunOnly:
|
||
b.WriteString("This is a run-only autopilot task, so there may be no issue comment to post. Your final assistant output is captured automatically as the autopilot run result. Keep it concise and state the outcome.\n\n")
|
||
b.WriteString("**Delivering files here:** this surface is text-only — the run result carries no attachments. Describe what you produced; do not link its path.\n")
|
||
case kindQuickCreate:
|
||
b.WriteString("This is a quick-create task. There is NO existing issue to comment on. Your final stdout is captured automatically and the platform writes the user's success/failure inbox notification based on whether `multica issue create` succeeded.\n\n")
|
||
b.WriteString("- Do NOT call `multica issue comment add` — the issue you just created has no conversation context for this run.\n")
|
||
b.WriteString("- Print exactly one final line: `Created <identifier-or-id>: <title>` after a successful `multica issue create`, using the created issue's `identifier` from JSON output (fall back to its `id`; never assume a workspace issue prefix such as `MUL-`).\n")
|
||
b.WriteString("- On CLI failure, exit with the CLI error as the only output — the platform turns it into a `quick_create_failed` inbox item for the user.\n\n")
|
||
b.WriteString("**Delivering files here:** your stdout is text-only. A file that belongs to the new issue goes on the `multica issue create` call itself via `--attachment <path>`; never put its path in the description or in your stdout line.\n")
|
||
case kindChat:
|
||
b.WriteString("This is a chat session. Your reply is delivered directly to the chat window the user is reading.\n\n")
|
||
// Two-layer channel policy (MUL-4899). This is the DELIVERY layer: any
|
||
// non-empty channel type means the reply leaves Multica for an external
|
||
// IM platform, where `attachment upload` has nothing to bind to. The
|
||
// orthogonal HISTORY layer (which read commands exist) is Slack-only and
|
||
// lives in the per-turn chat prompt — do not collapse the two.
|
||
if ctx.ChatChannelType != "" {
|
||
fmt.Fprintf(b, "**Delivering files here:** this %s conversation is text-only — Multica cannot push a file you produced back into it. `multica attachment upload` does NOT apply: it binds to a Multica chat reply, which this is not. Say in words what you produced and where it can be obtained; never upload and then write as though the file arrived, and never link its local path.\n", ChannelDisplayName(ctx.ChatChannelType))
|
||
} else {
|
||
b.WriteString("**Delivering files here:** run `multica attachment upload <local-path>` — it binds the file to your reply and it renders as an attachment card. That command is the ONLY way a file reaches the user; a path written into your reply text is not.\n")
|
||
}
|
||
default:
|
||
if ctx.IsSquadLeader {
|
||
b.WriteString("⚠️ **Final results MUST be delivered via `multica issue comment add`** — unless your outcome is `no_action`. When you evaluate a trigger and decide no action is needed, calling `multica squad activity <issue-id> no_action --reason \"...\"` alone is sufficient; you MUST exit without posting any comment. DO NOT post a comment that announces no_action, acknowledges another agent, or says you are exiting silently — such comments are noise. For all other outcomes (`action`, `failed`), a comment is still mandatory.\n\n")
|
||
} else {
|
||
b.WriteString("⚠️ **Final results MUST be delivered via `multica issue comment add`.** The user does NOT see your terminal output or run logs — only comments on the issue.\n\n")
|
||
}
|
||
b.WriteString("**Post exactly ONE comment per run — your final result, before this turn exits.** Do NOT post progress updates or plans along the way.\n\n")
|
||
b.WriteString("Keep comments concise and natural — state the outcome, not the process.\n\n")
|
||
b.WriteString("**Delivering files here:** pass `--attachment <path>` to `multica issue comment add` (repeatable) — the only way a screenshot or artifact reaches the reader.\n")
|
||
}
|
||
b.WriteString("\n")
|
||
writeDeliveryInvariant(b)
|
||
}
|
||
|
||
// buildMetaSkillContentSlim is the post-MUL-3560 brief assembler.
|
||
// Called from buildMetaSkillContent (runtime_config.go). The
|
||
// `runtime_brief_slim` flag that once gated it was retired in MUL-4297.
|
||
//
|
||
// The Section × Kind matrix encoded below (skip = elide section, keep
|
||
// = always emit, △ = data-driven inside the helper):
|
||
//
|
||
// Section | comment | assign | autopilot | quick_create | chat
|
||
// ----------------------+---------+--------+-----------+--------------+------
|
||
// Available Commands | full | full | full | minimal | full
|
||
// Issue Body Formatting | ✓ | ✓ | ✓ | ✓ | ✓
|
||
// Comment Formatting | ✓ | ✓ | — | — | —
|
||
// Repositories | △ | △ | △ | — | △
|
||
// Project Context | △ | △ | △ | △ | △
|
||
// Issue Metadata | ✓ | ✓ | — | — | —
|
||
// Instruction Precedence| — | ✓ | — | — | —
|
||
// Sub-issue Creation | ✓ | ✓ | — | — | —
|
||
// Skills | ✓ | ✓ | ✓ | ✓ | ✓
|
||
// Mentions | ✓ | ✓ | — | — | —
|
||
// Attachments | ✓ | ✓ | — | — | —
|
||
//
|
||
// Always-on rows — Header, Background Task Safety, Agent Identity,
|
||
// Requesting User, Task Initiator, Workspace Context, Connected Apps,
|
||
// Workflow, Always Use CLI, Output — are shared by every kind and emitted
|
||
// unconditionally (or gated by their own data preconditions).
|
||
func buildMetaSkillContentSlim(provider string, ctx TaskContextForEnv) string {
|
||
var b strings.Builder
|
||
kind := classifyTask(ctx)
|
||
|
||
// Session Continuity Notice, Task Initiator and Connected Apps used to be
|
||
// rendered here. They are per-run values, so emitting them into this file
|
||
// broke prompt-cache prefix stability on every resume; they now travel in
|
||
// the per-turn user message (daemon.BuildPrompt) instead. See MUL-5377.
|
||
writeHeader(&b)
|
||
writeBackgroundTaskSafetySlim(&b)
|
||
writeAgentIdentity(&b, ctx)
|
||
writeRequestingUser(&b, ctx)
|
||
writeWorkspaceContext(&b, ctx)
|
||
|
||
switch kind {
|
||
case kindQuickCreate:
|
||
writeAvailableCommandsQuickCreate(&b)
|
||
default:
|
||
writeAvailableCommands(&b, ctx)
|
||
}
|
||
writeIssueBodyFormatting(&b)
|
||
|
||
if kind == kindIssue {
|
||
writeCommentFormatting(&b)
|
||
}
|
||
|
||
if kind != kindQuickCreate {
|
||
writeRepositories(&b, ctx)
|
||
}
|
||
|
||
writeProjectContext(&b, ctx)
|
||
|
||
if kind.hasIssueContext() {
|
||
writeIssueMetadata(&b)
|
||
}
|
||
|
||
if kind == kindIssue {
|
||
writeInstructionPrecedence(&b)
|
||
}
|
||
|
||
writeWorkflowHeader(&b)
|
||
switch kind {
|
||
case kindChat:
|
||
writeWorkflowChat(&b)
|
||
case kindQuickCreate:
|
||
writeWorkflowQuickCreate(&b)
|
||
case kindAutopilotRunOnly:
|
||
writeWorkflowAutopilot(&b, ctx)
|
||
case kindIssue:
|
||
writeWorkflowIssue(&b, ctx)
|
||
}
|
||
|
||
if kind.hasIssueContext() && ctx.IssueID != "" {
|
||
writeSubIssueCreation(&b)
|
||
}
|
||
|
||
// Every kind, quick-create included. Quick-create used to be skipped here
|
||
// and carried its own copy in issue_context.md instead; now that both are
|
||
// the same names-only index, the brief is the one that survives.
|
||
writeSkills(&b, ctx)
|
||
|
||
if kind == kindIssue {
|
||
writeMentions(&b)
|
||
writeAttachments(&b)
|
||
}
|
||
|
||
writeAlwaysUseCLI(&b)
|
||
writeOutput(&b, kind, ctx)
|
||
|
||
return b.String()
|
||
}
|