@xn-intenton-z2a/agentic-lib 7.4.58 → 7.4.59

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.
@@ -519,7 +519,7 @@ function removeStaleWorkflows(templateWorkflows) {
519
519
  const targetWorkflowsDir = resolve(target, ".github/workflows");
520
520
  if (!existsSync(targetWorkflowsDir)) return;
521
521
  for (const f of readdirSync(targetWorkflowsDir)) {
522
- if (f.endsWith(".yml") && !templateWorkflows.has(f)) {
522
+ if (f.startsWith("agentic-lib-") && f.endsWith(".yml") && !templateWorkflows.has(f)) {
523
523
  if (!dryRun) rmSync(resolve(targetWorkflowsDir, f));
524
524
  console.log(` REMOVE stale: workflows/${f}`);
525
525
  initChanges++;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xn-intenton-z2a/agentic-lib",
3
- "version": "7.4.58",
3
+ "version": "7.4.59",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@xn-intenton-z2a/agentic-lib": "^7.4.58"
20
+ "@xn-intenton-z2a/agentic-lib": "^7.4.59"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@playwright/test": "^1.58.0",