@xn-intenton-z2a/agentic-lib 7.1.9 → 7.1.11

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.9",
3
+ "version": "7.1.11",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -32,8 +32,10 @@ runs:
32
32
  git commit -m "${{ inputs.commit-message }}"
33
33
  REF="${{ inputs.push-ref }}"
34
34
  if [ -n "$REF" ]; then
35
+ git pull --rebase origin "$REF"
35
36
  git push origin "$REF"
36
37
  else
38
+ git pull --rebase
37
39
  git push
38
40
  fi
39
41
  fi
@@ -1,7 +1,3 @@
1
1
  # Mission
2
2
 
3
- Build a useful JavaScript library.
4
-
5
- Write your intention here. The agentic workflows will transform the code in `src/lib/main.js` to realise this mission. Tests in `tests/unit/` keep the code on track. Each workflow cycle assesses the current state, plans improvements, and executes changes — guided by this document.
6
-
7
- See [intentïon agentic-lib](https://github.com/xn-intenton-z2a/agentic-lib) for details.
3
+ Build a JavaScript library that is immediately useful to something or someone and it immediately available to run e.g. `npx @xn-intenton-z2a/<this package name>`.
@@ -7,6 +7,9 @@
7
7
 
8
8
  name: agent-flow-fix-code
9
9
  run-name: "agent-flow-fix-code [${{ github.ref_name }}]"
10
+ concurrency:
11
+ group: agentic-lib-fix-${{ github.event.check_suite.head_branch || inputs.pr-number || github.ref_name }}
12
+ cancel-in-progress: true
10
13
 
11
14
  on:
12
15
  check_suite:
@@ -73,7 +73,8 @@ jobs:
73
73
  push-ref: ${{ github.ref_name }}
74
74
 
75
75
  maintain-library:
76
- if: inputs.step == 'all' || inputs.step == 'library' || github.event_name == 'schedule'
76
+ needs: maintain-features
77
+ if: always() && (inputs.step == 'all' || inputs.step == 'library' || github.event_name == 'schedule')
77
78
  runs-on: ubuntu-latest
78
79
  steps:
79
80
  - uses: actions/checkout@v4
@@ -11,7 +11,7 @@ concurrency: agentic-lib-main
11
11
 
12
12
  on:
13
13
  schedule:
14
- - cron: "17 6,8,10,12 * * *" # daily at 06:17 UTC
14
+ - cron: "17 6,8,10,12 * * *" # 06:17, 08:17, 10:17, 12:17 UTC
15
15
  workflow_dispatch:
16
16
  inputs:
17
17
  model:
@@ -11,7 +11,7 @@ run-name: "agent-supervisor [${{ github.ref_name }}]"
11
11
  on:
12
12
  workflow_run:
13
13
  workflows:
14
- - ci
14
+ - test
15
15
  - agent-flow-transform
16
16
  - agent-flow-maintain
17
17
  types: