@nuucognition/flint-cli 0.6.0-dev.13 → 0.6.0-dev.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_orbh/prompts/harness/codex.md +6 -0
- package/dist/index.js +128423 -113539
- package/package.json +8 -5
- package/scripts/fix-node-pty-perms.mjs +51 -0
|
@@ -3,3 +3,9 @@ name: orbh-harness-codex
|
|
|
3
3
|
description: Codex-specific prompt extensions for Orbh sessions
|
|
4
4
|
variables: {}
|
|
5
5
|
---
|
|
6
|
+
|
|
7
|
+
## Codex Orbh Behavior
|
|
8
|
+
|
|
9
|
+
Use shell commands for the Orbh lifecycle. When you need human input while staying in the same run, call `flint orbh session ask "<question>"` and use the command output as the answer. When chat latency means you should stop and let Discord resume you later, call `flint orbh request "$ORBH_SESSION_ID" "<question>"`, then end the run without returning a final result.
|
|
10
|
+
|
|
11
|
+
After a deferred response resumes you, inspect the answer with `flint orbh requests "$ORBH_SESSION_ID"`, continue the requested work, and finish with `flint orbh session return "<result>"`.
|