cognition-system-operation-flows 0.8.0__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.
- cognition_system_operation_flows-0.8.0/PKG-INFO +12 -0
- cognition_system_operation_flows-0.8.0/pyproject.toml +46 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/__init__.py +3 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_agents/__init__.py +2 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_agents/workflow_admission.py +676 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_agents/workflow_registry_observation.py +211 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/__init__.py +1 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/boundaries.py +82 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/control.py +349 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/descriptors.py +97 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/registry.py +51 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_core/run_workspace.py +455 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_external_readonly/__init__.py +2 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_external_readonly/evidence.py +420 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_external_readonly/network_gate.py +494 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_external_readonly/provider_adapter.py +322 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_external_readonly/tool_design.py +398 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_llm/__init__.py +1 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_llm/invocation.py +93 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/__init__.py +2 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/controls.py +157 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/execution.py +75 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/external_readonly_refs.py +28 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/request.py +289 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/route.py +68 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/types.py +94 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_product_entry/workspace.py +142 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_requests/__init__.py +1 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_requests/builder.py +341 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_requests/drafts.py +655 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_requests/intent_detectors.py +267 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_requests/registry.py +605 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_skills/__init__.py +2 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_skills/capability_projection.py +1498 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_skills/projection_context.py +801 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_skills/registry_admission.py +847 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/__init__.py +2 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/exposure_profile.py +575 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/loading_validation.py +311 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/readonly_tool_design.py +354 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/reference_reader.py +525 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_tools/toolset_admission.py +409 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_workflows/__init__.py +1 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_workflows/config_profile_explain.py +928 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_workflows/plan.py +1735 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_workflows/reference_review.py +2181 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/_workflows/run_workspace_evidence_audit.py +1338 -0
- cognition_system_operation_flows-0.8.0/src/cognition_operation_flows/product_entry_service.py +156 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cognition-system-operation-flows
|
|
3
|
+
Version: 0.8.0
|
|
4
|
+
Summary: Product-level governed operation flows package for the Cognition System.
|
|
5
|
+
Requires-Python: >=3.14
|
|
6
|
+
Requires-Dist: cognition-system-config-contexts==0.8.0
|
|
7
|
+
Requires-Dist: cognition-system-contract-core==0.8.0
|
|
8
|
+
Requires-Dist: cognition-system-runtime==0.8.0
|
|
9
|
+
Requires-Dist: pydantic>=2.13.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
Cognition System v0.8.0 public package. See the version-specific public README in the release repository for usage and boundary notes.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cognition-system-operation-flows"
|
|
3
|
+
version = "0.8.0"
|
|
4
|
+
description = "Product-level governed operation flows package for the Cognition System."
|
|
5
|
+
readme = { text = "Cognition System v0.8.0 public package. See the version-specific public README in the release repository for usage and boundary notes.", content-type = "text/markdown" }
|
|
6
|
+
requires-python = ">=3.14"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"cognition-system-config-contexts==0.8.0",
|
|
9
|
+
"cognition-system-contract-core==0.8.0",
|
|
10
|
+
"cognition-system-runtime==0.8.0",
|
|
11
|
+
"pydantic>=2.13.0",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[build-system]
|
|
15
|
+
requires = ["hatchling"]
|
|
16
|
+
build-backend = "hatchling.build"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/cognition_operation_flows"]
|
|
20
|
+
|
|
21
|
+
[tool.cognition_operation_flows]
|
|
22
|
+
status = "product_level_governed_operation_flows"
|
|
23
|
+
package = "cognition_operation_flows"
|
|
24
|
+
source_root = "src/cognition_operation_flows"
|
|
25
|
+
channel_neutral = true
|
|
26
|
+
workflow_execution_enabled = false
|
|
27
|
+
operation_flow_descriptor_candidate_enabled = true
|
|
28
|
+
twf_router_candidate_enabled = true
|
|
29
|
+
task_control_candidate_enabled = false
|
|
30
|
+
operation_control_candidate_enabled = true
|
|
31
|
+
run_workspace_candidate_enabled = true
|
|
32
|
+
skill_projection_context_candidate_enabled = true
|
|
33
|
+
request_draft_candidate_enabled = true
|
|
34
|
+
runtime_container_dependency_enabled = false
|
|
35
|
+
runtime_dependency_enabled = true
|
|
36
|
+
contract_core_dependency_enabled = true
|
|
37
|
+
config_contexts_dependency_enabled = true
|
|
38
|
+
product_gateway_dependency_enabled = false
|
|
39
|
+
channel_adapter_dependency_enabled = false
|
|
40
|
+
publishable = true
|
|
41
|
+
release_configured = true
|
|
42
|
+
|
|
43
|
+
[tool.uv.sources]
|
|
44
|
+
cognition-system-config-contexts = { workspace = true }
|
|
45
|
+
cognition-system-contract-core = { workspace = true }
|
|
46
|
+
cognition-system-runtime = { workspace = true }
|