fix(daemon): add CLI hint to issue_context.md
renderIssueContext() now includes a "Quick Start" section with the `multica issue get` command so agents know how to fetch issue details. Fixes the TestPrepareDirectoryMode and TestWriteContextFiles failures.
This commit is contained in:
parent
91c279fd2a
commit
90295d8554
1 changed files with 3 additions and 0 deletions
|
|
@ -120,6 +120,9 @@ func renderIssueContext(provider string, ctx TaskContextForEnv) string {
|
|||
b.WriteString("**Trigger:** New Assignment\n\n")
|
||||
}
|
||||
|
||||
b.WriteString("## Quick Start\n\n")
|
||||
fmt.Fprintf(&b, "Run `multica issue get %s --output json` to fetch the full issue details.\n\n", ctx.IssueID)
|
||||
|
||||
if len(ctx.AgentSkills) > 0 {
|
||||
b.WriteString("## Agent Skills\n\n")
|
||||
b.WriteString("The following skills are available to you:\n\n")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue