forgexa-cli 1.18.0__tar.gz → 1.18.1__tar.gz

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
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.18.0
3
+ Version: 1.18.1
4
4
  Summary: Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform
5
5
  Author-email: Jason Sun <dev.winds@gmail.com>
6
6
  License-Expression: MIT
@@ -1,2 +1,2 @@
1
1
  """forgexa-cli — Forgexa command-line client."""
2
- __version__ = "1.18.0"
2
+ __version__ = "1.18.1"
@@ -403,6 +403,10 @@ except (ImportError, ModuleNotFoundError):
403
403
  def DAEMON_API_TOKEN(self) -> str:
404
404
  return os.environ.get("DAEMON_API_TOKEN", "")
405
405
 
406
+ @property
407
+ def SECRET_KEY(self) -> str:
408
+ return os.environ.get("SECRET_KEY", "change-me-in-production")
409
+
406
410
  @property
407
411
  def DAEMON_POLL_INTERVAL(self) -> int:
408
412
  return int(os.environ.get("DAEMON_POLL_INTERVAL", "3"))
@@ -523,7 +527,7 @@ except (ImportError, ModuleNotFoundError):
523
527
  # DAEMON_VERSION is the protocol/logic version of the daemon code.
524
528
  # Kept in sync with pyproject.toml version via bump-version.sh.
525
529
  # CLIENT_TYPE identifies which packaging/distribution this daemon runs in.
526
- DAEMON_VERSION = "1.18.0"
530
+ DAEMON_VERSION = "1.18.1"
527
531
 
528
532
 
529
533
  def _detect_client_type() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.18.0
3
+ Version: 1.18.1
4
4
  Summary: Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform
5
5
  Author-email: Jason Sun <dev.winds@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "forgexa-cli"
3
- version = "1.18.0"
3
+ version = "1.18.1"
4
4
  description = "Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform"
5
5
  requires-python = ">=3.9"
6
6
  license = "MIT"
File without changes
File without changes