@fiale-plus/pi-rogue-orchestration

Orchestration controls for Pi-Rogue: scheduled loop, goal resolution, and autoresearch.

Packages

Package details

extensionskill

Install @fiale-plus/pi-rogue-orchestration from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@fiale-plus/pi-rogue-orchestration
Package
@fiale-plus/pi-rogue-orchestration
Version
0.1.12
Published
May 27, 2026
Downloads
1,243/mo · 1,243/wk
Author
bearmug
License
MIT
Types
extension, skill
Size
38.6 KB
Dependencies
0 dependencies · 1 peer
Pi manifest JSON
{
  "extensions": [
    "./orchestration"
  ],
  "skills": [
    "./skills"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

@fiale-plus/pi-rogue-orchestration

What this package is

Session orchestration for Pi-Rogue built around three primitives:

  1. goal — define and track what success looks like
  2. loop — periodic execution and backpressure-safe scheduling
  3. autoresearch / autoresearch-lab — goal+loop facades for iterative or parallelized optimization

Install

# Published package
pi install npm:@fiale-plus/pi-rogue-orchestration

# Local package development
npm install --workspace packages/orchestration

Commands

Command What it does
/goal set <text> Set/update current goal (auto-starts a first check when loop exists)
/goal show Show current goal
/goal clear Clear active goal
/goal list Show recent goal history
/loop <interval> <instruction> Create or reset periodic loop (1m minimum)
/loop status Show current loop state
/loop off / clear / stop Clear loop
/autoresearch <instruction> Start/update solo research flow (1+ cycles required before completion)
/autoresearch status Show autoresearch state/counters/status
/autoresearch clear Clear solo research + underlying loop
/autoresearch-lab <instruction> Start/update parallel research mode
/autoresearch-lab status Show lab state
/autoresearch-lab clear Clear lab + underlying loop

Behavior notes

  • loop supports minimum interval 1m.
  • goal checks are done through assistant loop ticks; GOAL_DONE / GOAL_CONTINUE are preserved.
  • autoresearch and autoresearch-lab are thin facades over /goal + /loop.
  • Goal/autoresearch activation enables advisor check-ins; clearing the active goal/research flow disables them again.
  • Stale research state is cleared when goal or loop are cleared.