| name | openflow |
| description | Openflow data integration operations. Openflow is a Snowflake NiFi-based product for data replication and transformation. Use for connector deployment, configuration, diagnostics, and custom flows. |
| dependencies | python>=3.9, nipyapi[cli]>=1.5.0 |
| min_nipyapi_version | 1.5.0 |
| skill_version | 2026-01-25 |
Openflow
Session Prerequisites (Always First)
Before any operation, validate session state. Operations will fail without a valid session.
- Load
references/core-guidelines.md and references/core-session.md
- Follow the Session Start Workflow (cache check, profile selection)
- Only proceed once a profile is confirmed
Context Management:
- Read references fully when loading them, not just partial sections
- Re-read references at key workflow steps to ensure context is fresh
- If unsure of exact command syntax, run
--help on the function before executing
Routing Principles
- Session first - Always validate session before routing to any operation
- Confirm before executing - State detected intent, ask user for confirmation
- Primary wins ties - If ambiguous between tiers, choose Primary
- Never suggest Advanced - Only route to Advanced on explicit technical language
- Diary for complexity - Use investigation diary methodology when Secondary/Advanced operations become complex
Confirmation checkpoint (use before starting any workflow):
"It sounds like you want to [detected intent]. Is that right, or were you looking for something else?"
Primary Operations
These are the common operations users perform regularly. Route here confidently for any general data integration request.
Connector Name Detection
If the user mentions a data source by name, route to Primary tier:
Known sources: PostgreSQL, MySQL, SQL Server, SharePoint, Google Drive, Kafka, Salesforce, Box, Jira, Kinesis, Workday, Slack, Google Sheets, Google Ads, LinkedIn Ads, Meta Ads, Amazon Ads, Dataverse, MongoDB
- New connector request: "I need PostgreSQL" → Deploy workflow
- Existing connector: "How's my PostgreSQL connector?" → Status workflow
Primary Routing Table
| User Language | Operation | Reference |
|---|
| Deploy, set up, install, get X into Snowflake, new connector, add connector | Deploy Connector | references/connector-main.md |
| Status, check, how is it doing, what's running, health, is it working | Check Status | references/ops-status-check.md |
| Start, stop, pause, resume, turn on, turn off, enable, disable | Control Flow | references/ops-status-check.md |
| Upgrade, update, new version, stale, outdated | Upgrade Connector | references/connector-upgrades.md |
| Errors, bulletins, any problems, warnings, what's wrong | Check Bulletins | references/ops-status-check.md |
| List, show me, what connectors exist, what's deployed | List Flows | references/ops-status-check.md |
| Setup, first time, connect, missing profile, discover infrastructure | Initial Setup | references/setup-main.md |
Secondary Operations
Route here when user language contains explicit problem or operational indicators. These operations may become complex - consider using investigation diary methodology if they exceed 5-10 exchanges.
Confirm before routing:
"It sounds like you're experiencing [issue/need]. Would you like me to help with that?"
Secondary Routing Table
| Explicit Indicators | Operation | Reference |
|---|
| Investigate, troubleshoot, debug, figure out why, not working as expected | Investigation | references/ops-flow-investigation.md |
| Error, 401, can't connect, failed, access denied, connection error | Error Remediation | references/core-troubleshooting.md |
| Configure parameters, change settings, update credentials, set values | Parameter Config | references/ops-parameters-main.md |
| Create parameter context, bind context, delete context, assign context | Context Lifecycle | references/ops-parameters-contexts.md |
| EAI, network rule, firewall, external access, UnknownHostException | Network Access | references/platform-eai.md |
| Test network, validate connectivity, port blocked | Network Testing | references/ops-network-testing.md |
| Runtime errors, pod failures, logs, events table, crash loop | Platform Diagnostics | references/platform-diagnostics.md |
| Force stop, terminate threads, purge flowfiles, delete flow | Advanced Lifecycle | references/ops-flow-lifecycle.md |
| Inspect connection, FlowFile content, queue contents, peek data | Connection Inspection | references/ops-connection-inspection.md |
| Component state, CDC table state, clear state, reset processor | Component State | references/ops-component-state.md |
| Set processor properties, set controller properties, configure component | Component Config | references/ops-component-config.md |
| Upload asset, JAR, certificate, driver, binary file | Asset Upload | references/ops-parameters-assets.md |
| Snowflake destination, KEY_PAIR, auth errors, writes to Snowflake | Snowflake Auth | references/ops-snowflake-auth.md |
| Verify config, test connection, validate before start | Config Verification | |
Advanced Operations
Route here ONLY when user explicitly uses technical NiFi terminology. These users know what they're asking for. Do not suggest these operations to users who haven't asked.
Use investigation diary methodology for these operations - they are inherently complex.
Advanced Routing Table
| Technical Language Required | Operation | Reference |
|---|
| Custom flow, build from scratch, author, create new flow, design flow | Custom Authoring | references/author-main.md |
| Processor, add processor, create processor, modify flow structure | Component CRUD | references/author-building-flows.md |
| Export, import, backup, migrate, download flow | Flow Export/Import | references/ops-flow-export.md |
| Version control, commit, rollback, Git, save changes | Version Control | references/ops-version-control.md |
| Expression Language, EL, ${...}, attribute manipulation | EL Syntax | references/nifi-expression-language.md |
| RecordPath, record field, /path/to/field, JSON transformation | RecordPath | references/nifi-recordpath.md |
| Date format, timestamp conversion, epoch, SimpleDateFormat | Date Formatting | references/nifi-date-formatting.md |
| NAR, extension, upload NAR, Python processor, custom processor | Extensions | references/ops-extensions.md |
| Layout, position, organize canvas, tidy flow | Layout | references/ops-layout.md |
| Find processor, what processor for X, component selection | Component Selection | references/author-component-selection.md |
| Write to Snowflake, type mapping, logicalType, PutSnowpipeStreaming | Snowflake Destination | references/author-snowflake-destination.md |
| NiFi concepts, FlowFile, connections, backpressure | NiFi Concepts | references/nifi-main.md |
| REST API ingestion, file processing, ActiveMQ, JMS | Flow Patterns | references/author-main.md |
| GenerateJSON, synthetic data, test data, DataFaker, fake data | Data Generation | references/author-pattern-data-generation.md |
Compound Requests
If the user describes multiple operations:
- Create a todo list capturing all requested operations
- Ask the user to confirm the order:
"I've identified these tasks: [list]. What order would you like me to tackle them?"
- Execute in confirmed order, completing each before moving to the next
- Note: Some operations have natural dependencies (e.g., deploy before configure before start)
Reference Index
Core (Load at Session Start)
| Reference | Purpose |
|---|
references/core-guidelines.md | Tool hierarchy, deployment types, workflow modes, safety reminders |
references/core-session.md | Session check workflow, cache schema, profile selection |
references/core-investigation-diary.md | Diary methodology for complex operations |
references/core-troubleshooting.md | Error patterns and remediation |
Connector Operations
| Reference | Purpose |
|---|
references/connector-main.md | Connector deployment workflow and routing |
references/connector-upgrades.md | Version management for connectors |
references/connector-cdc.md | CDC connector specifics (PostgreSQL, MySQL, SQL Server) |
references/connector-googledrive.md | Google Drive connector specifics |
references/connector-sharepoint-simple.md | SharePoint connector specifics |
Flow Operations
| Reference | Purpose |
|---|
references/ops-status-check.md | Quick status checks, list flows, basic start/stop (Primary) |
references/ops-flow-lifecycle.md | Advanced lifecycle: force stop, purge, delete (Secondary) |
references/ops-flow-investigation.md | Problem-oriented diagnostic workflows |
references/ops-flow-deploy.md | Deploy flows from registries (used by connector-main) |
references/ops-flow-export.md | Export/import flow definitions (Advanced) |
Parameter Operations
| Reference | Purpose |
|---|
references/ops-parameters-main.md | Parameter context management router |
references/ops-parameters-contexts.md | Create, bind, delete parameter contexts |
references/ops-parameters-assets.md | Binary asset upload (JARs, certificates) |
references/ops-snowflake-auth.md | Snowflake destination authentication |
references/ops-config-verification.md | Validate configuration before start |
Platform Operations
| Reference | Purpose |
|---|
references/platform-eai.md | External Access Integration for SPCS |
references/platform-diagnostics.md | Runtime/pod diagnostics |
references/ops-network-testing.md | Network connectivity validation |
Flow Authoring (Advanced)
| Reference | Purpose |
|---|
references/author-main.md | Flow authoring router and design principles |
references/author-building-flows.md | Component CRUD, inspect-modify-test cycle |
references/author-component-selection.md | Find the right processor |
references/author-snowflake-destination.md | Type mapping for Snowflake writes |
references/author-pattern-rest-api.md | REST API ingestion pattern |
references/author-pattern-files.md | Cloud file processing pattern |
references/author-pattern-activemq.md | ActiveMQ/JMS messaging pattern |
references/author-pattern-data-generation.md | Synthetic test record data with GenerateJSON |
NiFi Technical (Advanced)
| Reference | Purpose |
|---|
references/nifi-main.md | NiFi reference router |
references/nifi-expression-language.md | FlowFile attribute manipulation |
references/nifi-recordpath.md | Record field transformation |
references/nifi-date-formatting.md | Date/time patterns |
references/nifi-concepts.md | FlowFile, connections, backpressure |
Development
| Reference | Purpose |
|---|
references/core-skill-development.md | Guidelines for extending this skill |