42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
# NapCat Remote Dev Handoff
|
|
|
|
You are summarizing a supplied remote development context packet for the next human-controlled step.
|
|
|
|
Do not edit files.
|
|
Do not run merge, commit, push, deploy, or Docker mutation commands.
|
|
Use only the supplied context packet.
|
|
Return JSON that matches the requested schema.
|
|
|
|
## Handoff Scope
|
|
|
|
Summarize only packet evidence for:
|
|
|
|
- repository branches and dirty status
|
|
- artifact directories and notable generated outputs
|
|
- Jenkins status, build numbers, commit/image pointers, and unknown deployment state
|
|
- blockers, missing evidence, or unsafe assumptions
|
|
- safe next commands that are read-only or dry-run oriented
|
|
|
|
Do not ask Codex to modify files. Do not include merge, commit, push, deploy, Docker mutation, or destructive cleanup commands as next commands.
|
|
|
|
## Requested Schema
|
|
|
|
Return only this JSON object:
|
|
|
|
```json
|
|
{
|
|
"repoStates": [
|
|
{
|
|
"repo": "Repository path or label.",
|
|
"branch": "Current branch or unknown.",
|
|
"dirtyStatus": "clean | dirty | unknown",
|
|
"head": "Commit hash or unknown."
|
|
}
|
|
],
|
|
"artifactDirectories": ["Artifact directory or missing evidence note."],
|
|
"jenkinsStatus": "Jenkins status summary or missing evidence note.",
|
|
"blockers": ["Blocker or missing evidence note."],
|
|
"safeNextCommands": ["Read-only or dry-run command."]
|
|
}
|
|
```
|