harnex 0.7.3 → 0.7.5
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +40 -0
- data/README.md +55 -36
- data/guides/01_dispatch.md +24 -23
- data/guides/02_chain.md +6 -3
- data/guides/03_buddy.md +12 -11
- data/guides/04_monitoring.md +38 -24
- data/guides/05_naming.md +22 -17
- data/lib/harnex/adapters/base.rb +3 -2
- data/lib/harnex/adapters/pi.rb +512 -0
- data/lib/harnex/adapters.rb +3 -1
- data/lib/harnex/cli.rb +1 -1
- data/lib/harnex/commands/run.rb +3 -3
- data/lib/harnex/commands/status.rb +35 -6
- data/lib/harnex/commands/wait.rb +45 -1
- data/lib/harnex/runtime/session.rb +164 -23
- data/lib/harnex/terminal_status.rb +202 -0
- data/lib/harnex/version.rb +2 -2
- data/lib/harnex.rb +1 -0
- metadata +6 -4
data/lib/harnex.rb
CHANGED
|
@@ -5,6 +5,7 @@ require "open3"
|
|
|
5
5
|
require_relative "harnex/version"
|
|
6
6
|
require_relative "harnex/core"
|
|
7
7
|
require_relative "harnex/dispatch_history"
|
|
8
|
+
require_relative "harnex/terminal_status"
|
|
8
9
|
require_relative "harnex/watcher"
|
|
9
10
|
require_relative "harnex/adapters"
|
|
10
11
|
require_relative "harnex/runtime/session_state"
|
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: harnex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jikku Jose
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: A local PTY harness that wraps terminal AI agents (Claude, Codex)
|
|
14
|
-
adds a control plane for discovery, messaging, and coordination.
|
|
13
|
+
description: A local PTY harness that wraps terminal AI agents (Claude, Codex, Pi)
|
|
14
|
+
and adds a control plane for discovery, messaging, and coordination.
|
|
15
15
|
email:
|
|
16
16
|
- jikkujose@gmail.com
|
|
17
17
|
executables:
|
|
@@ -39,6 +39,7 @@ files:
|
|
|
39
39
|
- lib/harnex/adapters/codex_appserver.rb
|
|
40
40
|
- lib/harnex/adapters/generic.rb
|
|
41
41
|
- lib/harnex/adapters/opencode.rb
|
|
42
|
+
- lib/harnex/adapters/pi.rb
|
|
42
43
|
- lib/harnex/cli.rb
|
|
43
44
|
- lib/harnex/codex/app_server/client.rb
|
|
44
45
|
- lib/harnex/commands/agents_guide.rb
|
|
@@ -64,6 +65,7 @@ files:
|
|
|
64
65
|
- lib/harnex/runtime/message.rb
|
|
65
66
|
- lib/harnex/runtime/session.rb
|
|
66
67
|
- lib/harnex/runtime/session_state.rb
|
|
68
|
+
- lib/harnex/terminal_status.rb
|
|
67
69
|
- lib/harnex/version.rb
|
|
68
70
|
- lib/harnex/watcher.rb
|
|
69
71
|
- lib/harnex/watcher/inotify.rb
|