@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 +1 -1
- package/src/actions/commit-if-changed/action.yml +2 -0
- package/src/seeds/zero-MISSION.md +1 -5
- package/src/workflows/agent-flow-fix-code.yml +3 -0
- package/src/workflows/agent-flow-maintain.yml +2 -1
- package/src/workflows/agent-flow-transform.yml +1 -1
- package/src/workflows/agent-supervisor.yml +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
# Mission
|
|
2
2
|
|
|
3
|
-
Build a useful
|
|
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
|
-
|
|
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
|