@delorenj/pjangler 1.4.2 → 1.4.3
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/index.js +3336 -1359
- package/dist/index.js.map +7 -0
- package/dist/mcp-server.js +1520 -838
- package/dist/mcp-server.js.map +7 -0
- package/dist/prompt.js +2 -1
- package/dist/prompt.js.map +7 -0
- package/package.json +8 -4
- package/templates/hermes-agent/copier.yml +16 -3
- package/templates/hermes-agent/template/.runtime-scaffold/memories/MEMORY.md +7 -4
- package/templates/hermes-agent/template/.scripts/10-hermes-profile.sh +88 -94
- package/templates/hermes-agent/template/.scripts/20-runtime-repo.sh +44 -21
- package/templates/hermes-agent/template/.scripts/30-telegram.sh +182 -171
- package/templates/hermes-agent/template/.scripts/31-slack.sh +260 -165
- package/templates/hermes-agent/template/.scripts/40-plane.sh +45 -36
- package/templates/hermes-agent/template/.scripts/42-ticket-provider.sh +210 -41
- package/templates/hermes-agent/template/.scripts/70-systemd.sh +129 -15
- package/templates/hermes-agent/template/.scripts/80-registry.sh +42 -6
- package/templates/hermes-agent/template/.scripts/99-summary.sh +69 -16
- package/templates/hermes-agent/template/.scripts/_lib.sh +773 -0
- package/templates/hermes-agent/template/.scripts/channel-transaction.py +2340 -0
- package/templates/hermes-agent/template/.scripts/config.example.toml +8 -2
- package/templates/hermes-agent/template/.scripts/credential-launch.sh +5 -1
- package/templates/hermes-agent/template/.scripts/heartbeat.sh +2 -3
- package/templates/hermes-agent/template/.scripts/lib/profile-config-lock.py +182 -0
- package/templates/hermes-agent/template/.scripts/lib/profile-config-seed.py +108 -0
- package/templates/hermes-agent/template/.scripts/lib/ticket-provider.sh +9 -0
- package/templates/hermes-agent/template/.scripts/lib/voice-config.py +546 -0
- package/templates/hermes-agent/template/.scripts/providers/linear.sh +24 -1
- package/templates/hermes-agent/template/.scripts/providers/plane.sh +54 -8
- package/templates/hermes-agent/template/.scripts/providers/trello.sh +25 -2
- package/templates/hermes-agent/template/.scripts/sentinel/bin/issue-autonomous-review.sh +5 -16
- package/templates/hermes-agent/template/.scripts/sentinel/bin/issue-close-gate.sh +2 -16
- package/templates/hermes-agent/template/.scripts/sentinel/docs/autonomous-delegated-review.md +13 -19
- package/templates/hermes-agent/template/.scripts/sentinel/docs/bloodbank-events.md +29 -36
- package/templates/hermes-agent/template/.scripts/sentinel.prompt.md.jinja +7 -8
- package/templates/hermes-agent/template/.scripts/store-onepassword-secret.py +260 -0
- package/templates/hermes-agent/template/SOUL.md.jinja +14 -16
- package/templates/hermes-agent/template/hermes.jinja +1 -1
- package/templates/hermes-agent/template/role.yaml.jinja +11 -4
|
@@ -30,8 +30,8 @@ telegram:
|
|
|
30
30
|
bot_username: {{ bot_handle | tojson }}
|
|
31
31
|
bot_id: ""
|
|
32
32
|
|
|
33
|
-
# Slack is opt-in. Credentials live
|
|
34
|
-
# safe
|
|
33
|
+
# Slack is opt-in. Credentials live in 1Password and the profile maps only
|
|
34
|
+
# op:// references; this block records safe state and auth.test identity.
|
|
35
35
|
slack:
|
|
36
36
|
provisioning_status: "deferred"
|
|
37
37
|
team_id: ""
|
|
@@ -46,7 +46,6 @@ slack:
|
|
|
46
46
|
ticket_provider:
|
|
47
47
|
name: {{ ticket_provider | tojson }}
|
|
48
48
|
board_id: ""
|
|
49
|
-
board_url: ""
|
|
50
49
|
{%- if ticket_provider == 'linear' %}
|
|
51
50
|
team: "" # Linear team key, e.g. DEL (set before first sentinel run)
|
|
52
51
|
project: "" # optional Linear project name to scope milestones/issues
|
|
@@ -63,7 +62,8 @@ ticket_provider:
|
|
|
63
62
|
|
|
64
63
|
# Board-reconciliation knobs for the heartbeat sentinel pass.
|
|
65
64
|
reconcile:
|
|
66
|
-
enabled:
|
|
65
|
+
enabled: {{ reconcile_enabled | tojson }} # default on for PM operation; set false as the explicit checkpoint-only opt-out
|
|
66
|
+
explicit_opt_out: {% if reconcile_enabled %}false{% else %}true{% endif %} # distinguishes operator choice from the legacy default-off manifest
|
|
67
67
|
grace_hours: 0 # 0 = no human-approval wait (adversarially-reviewed review-lane = done); set >0 to require a wait
|
|
68
68
|
auto_review: true # autonomous adversarial review (act, do not wait) on/off
|
|
69
69
|
|
|
@@ -84,6 +84,13 @@ bloodbank:
|
|
|
84
84
|
target_agent_id: {{ agent_id | tojson }}
|
|
85
85
|
producer: {{ ("hermes-agent:" ~ agent_id) | tojson }}
|
|
86
86
|
|
|
87
|
+
# Reconciled by 70-systemd.sh. These are lifecycle observations, not desired
|
|
88
|
+
# state: gateway stays deferred until a dedicated chat credential is verified;
|
|
89
|
+
# heartbeat is independent and drives PM board reconciliation by default.
|
|
90
|
+
service_state:
|
|
91
|
+
gateway: "pending"
|
|
92
|
+
heartbeat: "pending"
|
|
93
|
+
|
|
87
94
|
# Pure-local role-owned state. HERMES_HOME itself is the named profile directory
|
|
88
95
|
# above; the legacy GitHub identity remains metadata-only for locating old
|
|
89
96
|
# archives, and provisioning never creates or attaches a submodule.
|