@xn-intenton-z2a/agentic-lib 7.4.18 → 7.4.20

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.
@@ -652,32 +652,32 @@ jobs:
652
652
  echo "featuresWritablePaths=${FEATURES}" >> $GITHUB_OUTPUT
653
653
  echo "libraryWritablePaths=${LIBRARY};${SOURCES}" >> $GITHUB_OUTPUT
654
654
 
655
- - name: Maintain features
656
- id: maintain-features
655
+ - name: Maintain library
656
+ id: maintain-library
657
657
  if: steps.mission-check.outputs.mission-complete != 'true'
658
658
  uses: ./.github/agentic-lib/actions/agentic-step
659
659
  env:
660
660
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
661
661
  COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
662
662
  with:
663
- task: "maintain-features"
663
+ task: "maintain-library"
664
664
  config: ${{ needs.params.outputs.config-path }}
665
- instructions: ".github/agents/agent-maintain-features.md"
666
- writable-paths: ${{ steps.config.outputs.featuresWritablePaths }}
665
+ instructions: ".github/agents/agent-maintain-library.md"
666
+ writable-paths: ${{ steps.config.outputs.libraryWritablePaths }}
667
667
  model: ${{ needs.params.outputs.model }}
668
668
 
669
- - name: Maintain library
670
- id: maintain-library
669
+ - name: Maintain features
670
+ id: maintain-features
671
671
  if: steps.mission-check.outputs.mission-complete != 'true'
672
672
  uses: ./.github/agentic-lib/actions/agentic-step
673
673
  env:
674
674
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
675
675
  COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
676
676
  with:
677
- task: "maintain-library"
677
+ task: "maintain-features"
678
678
  config: ${{ needs.params.outputs.config-path }}
679
- instructions: ".github/agents/agent-maintain-library.md"
680
- writable-paths: ${{ steps.config.outputs.libraryWritablePaths }}
679
+ instructions: ".github/agents/agent-maintain-features.md"
680
+ writable-paths: ${{ steps.config.outputs.featuresWritablePaths }}
681
681
  model: ${{ needs.params.outputs.model }}
682
682
 
683
683
  - name: Log narrative thread
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xn-intenton-z2a/agentic-lib",
3
- "version": "7.4.18",
3
+ "version": "7.4.20",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -609,6 +609,13 @@ async function executeCreateIssue(octokit, repo, params, ctx) {
609
609
  if (!title && feature) {
610
610
  title = `feat: implement ${feature}`;
611
611
  }
612
+ // Fallback: derive title from mission context when LLM provides no params
613
+ if (!title && ctx?.mission) {
614
+ const missionHeading = ctx.mission.match(/^#\s+(.+)/m);
615
+ const missionName = missionHeading ? missionHeading[1].trim() : "mission";
616
+ title = `feat: implement ${missionName.toLowerCase()}`;
617
+ core.info(`create-issue: derived title from mission context: "${title}"`);
618
+ }
612
619
  if (!title) {
613
620
  core.warning("create-issue: no title, body, or feature provided — skipping");
614
621
  return "skipped:no-title";
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@xn-intenton-z2a/agentic-lib": "^7.4.18"
20
+ "@xn-intenton-z2a/agentic-lib": "^7.4.20"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@playwright/test": "^1.58.0",