Metadata-Version: 2.4
Name: cogniflow
Version: 0.1.0
Summary: Public Cogniflow distribution that installs the cf CLI and setup orchestration
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: cf-core-cli>=0.1.5
Requires-Dist: cf-setup>=0.1.0
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == "test"

# cogniflow

Public Cogniflow distribution for end users.

Install:

```bash
pip install cogniflow
```

This package does not implement a second CLI. It depends on:

- `cf-core-cli`, which provides the `cf` command
- `cf-setup`, which powers `cf install`

Typical public flow:

```bash
pip install cogniflow
cf install
```

Repository developers should continue to use:

```powershell
.\scripts\fresh_install_v2.ps1
```

## Publishing

`cogniflow` is the public metapackage at the end of the release chain:

- Workflow: `.github/workflows/cogniflow_windows_publish.yml`
- Package directory: `sandcastle/cogniflow`
- PyPI tag: `cogniflow-v<version>`
- TestPyPI tag: `cogniflow-v<version>-test`
- Release order: publish `cf-core-cli 0.1.5` first, then `cf-setup`, then `cogniflow`

Local preflight:

```powershell
powershell -ExecutionPolicy Bypass -File scripts/mimic_windows_python_publish_workflow.ps1 `
  -WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
  -PackageDir sandcastle/cogniflow `
  -PythonExe py `
  -PythonVersion 3.14
```

Queue a dry-run dispatch:

```powershell
powershell -ExecutionPolicy Bypass -File scripts/queue_windows_python_publish_workflow.ps1 `
  -WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
  -PackageDir sandcastle/cogniflow `
  -PublishTarget testpypi `
  -Ref main `
  -RequireLocalPass `
  -DryRun `
  -ReleaseTag cogniflow-v0.1.0-test
```
