@mamdouh-aboammar/agentic-workflow 1.2.0 → 1.2.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-workflow",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Pluripotent stem-cell framework and universal agentic toolchain for autonomous workflows",
5
5
  "author": {
6
6
  "name": "Mamdouh Aboammar"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-workflow",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Pluripotent stem-cell framework and universal agentic toolchain for autonomous workflows",
5
5
  "skills": "./skills",
6
6
  "interface": {
package/.skills.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://skills.sh/schema.json",
3
3
  "name": "agentic-workflow",
4
- "version": "1.2.0",
4
+ "version": "1.2.2",
5
5
  "description": "Pluripotent stem-cell framework and universal agentic toolchain for autonomous workflows",
6
6
  "repository": "https://github.com/imMamdouhaboammar/agentic-workflow",
7
7
  "author": "Mamdouh Aboammar",
package/README.md CHANGED
@@ -126,7 +126,7 @@ curl -fsSL https://raw.githubusercontent.com/imMamdouhaboammar/agentic-workflow/
126
126
  | **Bun (Library)** | `bun add @mamdouh-aboammar/agentic-workflow` | TypeScript / Bun SDK dependency |
127
127
  | **npm / npx (Node)** | `npx @mamdouh-aboammar/agentic-workflow [command]` | Zero-install Node CLI execution |
128
128
  | **npm (Library)** | `npm install @mamdouh-aboammar/agentic-workflow` | Node.js ESM library dependency |
129
- | **PyPI (Python)** | `pip install agenticworkflow` | Python library & console script |
129
+ | **PyPI (Python)** | `pip install agentic-workflow-toolchain` | Python library & console script |
130
130
  | **Homebrew (macOS/Linux)** | `brew install imMamdouhaboammar/tap/agentic-workflow` | System binary via Homebrew |
131
131
  | **Docker Container** | `docker run -it ghcr.io/immamdouhaboammar/agentic-workflow` | Isolated, containerized runner |
132
132
 
package/bin/cli.js CHANGED
@@ -1047,7 +1047,7 @@ Usage:
1047
1047
 
1048
1048
  case '--version':
1049
1049
  case '-v': {
1050
- console.log("agentic-workflow v1.2.0");
1050
+ console.log("agentic-workflow v1.2.2");
1051
1051
  break;
1052
1052
  }
1053
1053
 
@@ -10,7 +10,7 @@ Implements:
10
10
 
11
11
  import os
12
12
  import time
13
- from typing import Dict, Any, List
13
+ from typing import Dict, Any, List, Optional
14
14
 
15
15
  from core.engine_py.models import TaskInstance, AgentRole
16
16
  from core.engine_py.worker import BaseWorker
@@ -6,7 +6,7 @@ import os
6
6
  import shutil
7
7
  import subprocess
8
8
  from pathlib import Path
9
- from typing import Dict, Any, List
9
+ from typing import Dict, Any, List, Optional
10
10
 
11
11
 
12
12
  class AutoInstaller:
package/marketplace.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json.schemastore.org/claude-plugin-manifest.json",
3
3
  "name": "agentic-workflow",
4
4
  "displayName": "Agentic Workflow",
5
- "version": "1.2.0",
5
+ "version": "1.2.2",
6
6
  "description": "Pluripotent stem-cell framework and universal agentic toolchain for autonomous workflows",
7
7
  "author": {
8
8
  "name": "Mamdouh Aboammar"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mamdouh-aboammar/agentic-workflow",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },