continuation-proposal

Analyze task context and logs to propose one continuation task with metadata.

12|5|Updated Jan 14, 2025
One-click install
npx skills add https://github.com/MoonLadderStudios/MoonMind --skill continuation-proposal
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: continuation-proposal
Source: https://github.com/MoonLadderStudios/MoonMind/tree/main/.agents/skills/continuation-proposal
Command: npx skills add https://github.com/MoonLadderStudios/MoonMind --skill continuation-proposal

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

After a successful task run, teams often lack an automated, consistent way to determine the single most valuable next step; decisions are left to manual review and can miss high-impact follow-ups. This Skill reads the run context and summary to produce one concrete, scoped continuation that is implementation-ready and avoids duplicate proposals.

Core Features & Use Cases

  • Single Best-Next-Step: Analyze task_context.json, execution logs, and the task summary to identify the highest-value continuation.
  • Concrete, Scoped Output: Produce a proposal object containing title, summary, and a taskCreateRequest that can be enqueued directly.
  • Run-Quality Metadata: Tag proposals with category "run_quality" and include approved tags and signal metadata when applicable.
  • Use Case: After an automated test-and-build workflow completes successfully, generate a proposal to run a performance tuning phase or a targeted refactor to improve maintainability.

Quick Start

Generate one concrete continuation proposal for jobId 12345 using the task summary and the task_context.json artifact.

Frequently Asked Questions about continuation-proposal

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate selecting the next task after a successful task run?

To automate task selection after a successful run, this Skill reads task_context.json, execution logs, and the task summary to propose the single highest-value continuation. It appends a scoped proposal object with title, summary, and a taskCreateRequest directly to the proposals JSON.

What is the best way to generate a continuation proposal for post-run orchestration?

The best way to generate a continuation proposal for post-run orchestration is to analyze execution logs and task summaries. This identifies a concrete, implementation-ready next phase, refactor, or feature extension while avoiding duplicate titles in the proposals JSON.

How do I avoid duplicate task proposals when automating next-step recommendations?

To avoid duplicate task proposals when automating next-step recommendations, the proposal generation process checks existing proposals. It reads the run context and summary to append only a single, uniquely titled highest-value continuation task to the proposals JSON.

Can I automatically enqueue a refactor or performance improvement after a successful build?

Yes, you can automatically enqueue a refactor or performance improvement after a successful build. The Skill outputs a concrete taskCreateRequest within the proposal object, allowing the selected next phase to be enqueued directly into your task orchestration workflow.

What inputs are needed to propose a high-value continuation task automatically?

To propose a high-value continuation task automatically, the required inputs are task_context.json, execution logs, and the task summary. These artifacts provide the run context needed to determine and scope the next implementation-ready phase.

Does the proposed continuation task include metadata for run-quality tracking?

Yes, the proposed continuation task includes metadata for run-quality tracking. Proposals are tagged with the category "run_quality" and incorporate approved tags and signal metadata when applicable to maintain consistent orchestration standards.