01
Script folder
You need at least the executable main entry and the minimum folder structure that lets the platform understand what the capability is for.
Onboarding Checklist
This page lists the information that should be prepared before onboarding so customers, presales, and delivery can align faster.
Before a real scenario moves into onboarding, it is better to make the script folder, README, sample files, runtime dependencies, result shape, and risk boundary clear first. That makes later customer delivery, file processing, and CLI / local-bridge discussions much smoother.
01
You need at least the executable main entry and the minimum folder structure that lets the platform understand what the capability is for.
02
Tell the platform what the script does, what it takes in, what it returns, and what prerequisites it needs.
03
If the script depends on input files or generates output files, it is better to provide example input and example output.
04
It is best to say early whether AI may call it, whether manual execution is allowed, and whether manual confirmation is required.
Checklist Table
| Preparation item | Should it be provided early | Why it matters | Recommended explanation |
|---|---|---|---|
| Script folder | Required | There is no onboarding path without the actual execution content | At minimum, make the main entry and the minimum folder structure explicit. |
README.md | Required | It helps review, naming, and later maintenance | It should explain purpose, input, output, prerequisites, and result form. |
| Sample input | Strongly recommended | It makes onboarding effects much faster to verify | If file processing is involved, provide example files. |
| Sample output | Strongly recommended | It helps confirm whether the result matches expectation | This can be a sample output file, screenshot, or result-field explanation. |
| Runtime dependencies | Strongly recommended | They affect deployment and onboarding method | For example Python version, third-party packages, system tools, or external services. |
| Whether AI may call it | Recommended | It decides whether the intelligent brain may recommend this capability | Not every script enters AI recommendation scope by default. |
| Whether manual execution is allowed | Recommended | It decides whether the page opens a manual entry | This can be controlled separately from AI invocation. |
| Whether manual confirmation is required | Recommended | It controls the confirmation step for higher-risk actions | This fits scenarios such as rewriting data, sending messages, or triggering external actions. |
| Result form | Recommended | It affects result display and the result-download entry | The result can be text, a table, Excel, a zip package, or another artifact. |
| Expected execution duration | Recommended | It affects frontend experience and result-return method | Short tasks and long tasks usually need different user experience design. |
| Data-security boundary | Recommended | It affects whether the path should run in cloud execution or local bridging | When intranet or private resources are involved, the CLI / Agent route is usually needed. |
If Not Ready Yet
What This Avoids
Path Matching
| Current state | Best next page | Why | Notes |
|---|---|---|---|
| You are only learning the platform for the first time | Getting Started | Start by judging the platform position and the real entry points | You do not need a full delivery checklist on day one. |
| You are already preparing for a customer or a real project | Customer Flow / Delivery | Understand the formal delivery path and hot-update flow first | This fits joint review by presales, delivery, and the customer. |
| The task depends on input files and result files | File Upload & Result Delivery | Clarify the file chain first | This is especially useful for reporting, export, and batch data-processing scenarios. |
| The script depends on a local environment or intranet resources | CLI Guide | Local bridging is more likely to be needed | These scenarios are usually not solved only through a browser page. |
Next Read
Once a real onboarding stage begins, the more effective move is usually not to stay in abstract vision. It is to align delivery flow, the file path, and the local-bridge boundary together once.