@xn-intenton-z2a/agentic-lib 7.1.30 → 7.1.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xn-intenton-z2a/agentic-lib",
3
- "version": "7.1.30",
3
+ "version": "7.1.31",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  "author": "",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@xn-intenton-z2a/agentic-lib": "^7.1.30"
17
+ "@xn-intenton-z2a/agentic-lib": "^7.1.31"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@vitest/coverage-v8": "^4.0.0",
@@ -12,7 +12,7 @@
12
12
  # 2. Proactive (supervise job): LLM-driven strategic decisions via agentic-step.
13
13
  # - Gathers full repo context (issues, PRs, workflows, features, activity)
14
14
  # - Chooses actions: dispatch workflows, create/label/close issues, respond to discussions
15
- # - Runs on workflow_dispatch or schedule (set via agent-supervisor-schedule.yml)
15
+ # - Runs on every trigger (workflow_run, workflow_dispatch, schedule)
16
16
 
17
17
  name: agent-supervisor
18
18
  run-name: "agent-supervisor [${{ github.ref_name }}]"
@@ -175,7 +175,7 @@ jobs:
175
175
  # ─── Proactive: LLM-driven strategic decisions ───────────────────────
176
176
  supervise:
177
177
  needs: params
178
- if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
178
+ if: always() && needs.params.result == 'success'
179
179
  runs-on: ubuntu-latest
180
180
  steps:
181
181
  - uses: actions/checkout@v4