connection-import-wasm
GitHub提供基于WASM的数据库及SSH连接导入组件的开发、调试与打包指南,涵盖WIT契约实现、跨平台配置解析、扩展清单构建及UI集成验证。
Trigger Scenarios
Install
npx skills add feigeCode/navop --skill connection-import-wasm -g -y
SKILL.md
Frontmatter
{
"name": "connection-import-wasm",
"description": "Use when implementing, debugging, packaging, or host-enabling onetcli WASM connection importers such as DBeaver, Navicat, Navicat Lite, Termius, connection-import.wit components, wasm32-wasip2 importers, composite extension manifests, local importer visibility, or connection import UI freezes."
}
Connection Import WASM
Overview
Build one connection importer as one WASM component. Keep parser logic in the extension repo, keep host capabilities generic in ../onetcli, and verify the whole path from WIT contract to local composite extension visibility.
Use DBeaver as the reference implementation, but avoid baking DBeaver-specific assumptions into the host.
Reference Library
When developing an importer for a new application, read the playbook first, then load the topic references needed by the app's storage format and output kind:
| Need | Reference |
|---|---|
| End-to-end workflow for a new application | New Application Playbook |
| Finding app config files across macOS, Windows, and Linux | Source Discovery |
| Mapping parser output to host protocol JSON | Protocol and Records |
Writing extension.json, root manifest entries, and local installs |
Manifest and Packaging |
| Fixtures, tests, local host checks, and release verification | Testing and Troubleshooting |
| Database importer patterns such as DBeaver and Navicat Lite | Database Importers |
| SSH importer patterns such as OpenSSH config and known_hosts | ssh-connection-import |
Repo Map
| Area | Path |
|---|---|
| Extension workspace | onetcli-extensions |
| Importer crates | extensions/wasm/<tool>-importer |
| Shared extension WIT | wit/connection-import.wit |
| Marketplace entry | manifest.json with "kind": "composite" |
| Composite packaging | scripts/package-composite-extension.sh, scripts/verify-composite-package.sh, scripts/release-driver.mjs |
| Host repo | ../onetcli |
| Host WIT | crates/extension-api/wit/connection-import.wit |
| Host WASM runtime | crates/extension-wasm/src/connection_import.rs |
| Host manifest/provider | crates/extension-runtime/src/connection_import_provider.rs, crates/extension-runtime/src/extension/composite_provider.rs |
| Import UI | main/src/home/connection_import_* |
Implementation Workflow
- Implement one tool per WASM component. Prefer
extensions/wasm/<tool>-importer, withsrc/component.rsfor WIT bindings andsrc/<tool>.rsfor parser logic. - Keep
connection-import.witvendored in this repo underwit/. Do not make extension crates import the host repo WIT directly. Add or keep drift checks against../onetcliwhen the host repo is present. - Generate bindings from
../../../witin each importer crate:
wit_bindgen::generate!({
path: "../../../wit",
world: "connection-importer",
});
- Export
descriptor,scan, andpreview. Return JSON matchingconnection-import-protocol. Use structured parsers such asserde_json,plist, or product-specific parsers; avoid ad hoc string slicing for config formats. - Gate secrets strictly. If
ImportOptions.include_passwordsis false, never return plaintext passwords even when they exist in config files. - Declare candidates and permissions in
extension.json. Include all product paths per platform, for example macOS~/...and Windows%APPDATA%/.... - Register the importer in root
manifest.jsonas a composite extension. Composite importers install under~/.config/one-hub/extensions/composite/<extension-id>. - Package and install locally before host debugging. The installed folder must contain
extension.jsonandwasm/<module>.wasm.
Host Capability Checklist
When an importer fails in the host, fix the host generically:
- WASI Preview2:
crates/extension-wasm/src/connection_import.rsmust addwasmtime_wasi::p2::add_to_linker_async, storeWasiCtx, and implementWasiViewwith aResourceTable. Awasm32-wasip2component commonly importswasi:io/poll@0.2.6. - Manifest permissions:
%APPDATA%/...and~/...file permissions must validate inextension/manifest/security_rules.rs. - Candidate path expansion:
connection_import_provider.rsmust expand~/and%VAR%/...before reading files. - Local visibility:
CompositeExtensionProviderusesload_and_check; host version checks must use the app version, not theextension-runtimecrate version. - UI responsiveness: never call
futures::executor::block_onfrom GPUI import actions/dialogs. Open the preview dialog in a loading state and run preview work throughone_core::gpui_tokio::Tokio. - Feature wiring:
mainmust enableextension-runtimewithfeatures = ["wasm-components"], including--no-default-featuresbuilds when the app should still expose WASM importers.
Manifest Pattern
Use a composite manifest shape like this:
{
"schema_version": 1,
"id": "com.onetcli.importer.<tool>",
"name": "<Tool> Importer",
"version": "0.1.0",
"engines": { "onetcli": ">=0.7.0" },
"runtime": {
"wasm": [{
"id": "<tool>-importer",
"module": "wasm/<tool>_importer_wasm.wasm",
"kind": "component"
}]
},
"permissions": [
"fs:read:~/Library/...",
"fs:read:%APPDATA%/..."
],
"contributes": {
"connectionImporters": [{
"id": "<tool>",
"runtimeId": "<tool>-importer",
"displayName": "<Tool>",
"outputKinds": ["database"],
"platforms": ["macos", "windows"],
"candidateFiles": [{
"id": "<tool>-macos-config",
"platform": "macos",
"path": "~/Library/..."
}]
}]
}
}
Database Importer Notes
For database tools, fixtures from one product edition are not enough. Check every edition and platform path the importer claims in extension.json.
Navicat-specific rules:
- Premium Lite stores shared connection data at macOS
~/Library/Application Support/PremiumSoft CyberTech/Navicat CC/Common/conn.plist. - The Windows analogue is expected under
%APPDATA%/PremiumSoft CyberTech/Navicat CC/Common/conn.plist; declare it separately from the classic Navicat paths. - Navicat plist files may be XML or binary. Use
plist::Value::from_reader(Cursor::new(bytes))when binary support matters, not XML-only parsing. - Lite records may use lowercase fields such as
host,port,username, anddefaultdatabase. serviceprovider = Defaultis not a database type. Infer the database type from stable path/key segments such asMySQL,PostgreSQL,Oracle, or SQL Server-specific containers.- Skip nested parameter dictionaries that are not database connections, including
ssh_param,http_param,ssl_param, andcompatibility_param.
Add focused fixtures for each schema variant. At minimum, cover classic Navicat entries and Lite conn.plist entries with lowercase fields and path-derived database types.
For SSH-focused importers, use ssh-connection-import. Keep this skill for shared WASM packaging, manifests, host capability, and database importer behavior.
Testing
Extension repo:
rtk cargo test -p <tool>_importer_wasm
rtk cargo fmt --all --check
rtk cargo build --release -p <tool>_importer_wasm --target wasm32-wasip2
rtk node --test tests/scripts.test.mjs
rtk node scripts/release-driver.mjs <tool>-importer 0.1.0 --target universal --artifact-dir artifacts
Host repo:
rtk cargo test -p extension-wasm
rtk cargo test -p extension-runtime connection_import
rtk cargo test -p extension-runtime composite_provider_lists_connection_importer_with_windows_env_permission
rtk cargo check -p main
rtk cargo check -p main --no-default-features
rtk cargo build -p main
Add focused tests for every host ability that was missing. Useful examples include:
- A real or fixture
wasm32-wasip2component that reproduceswasi:io/poll@0.2.6linker failures. - A manifest with
%APPDATA%/...permissions and candidate files. - A provider/listing test proving the local composite importer appears in Installed extensions.
- A preview-provider test that runs DBeaver/Termius fixture components.
- A parser fixture for every product edition/path variant declared in the manifest.
- A serialized JSON assertion for any field backed by a host serde enum or externally tagged protocol shape.
Troubleshooting
| Symptom | Likely cause | Fix |
|---|---|---|
component imports instance wasi:io/poll@0.2.6 |
Connection-import runtime lacks WASI Preview2 linker | Add wasmtime_wasi::p2::add_to_linker_async plus WasiView state. |
| Local importer not visible | Manifest rejected by permissions or host version check | Validate %APPDATA% fs permissions and ensure app version is used for engines.onetcli. |
| Preview dialog freezes | UI thread is running WASM/filesystem work | Replace block_on with Tokio::spawn and loading-state entity updates. |
| Records import passwords when disabled | Parser ignores include_passwords |
Ensure parser omits config and credential passwords unless enabled. |
| Component returns zero records | Candidate id, permission, or path mismatch | Check candidateFiles, fs:read:*, platform filtering, and host path expansion. |
| Navicat Lite returns zero records | Lite path/schema differs from classic Navicat | Add Navicat CC/Common/conn.plist, lowercase field handling, path-derived database type inference, and plist binary/XML parsing. |
| Source is visible but preview has no rows | Availability only proves manifest/candidate visibility | Check host logs for file read, WASM output, and connection import preview failed decode errors. |
unknown variant kind during preview |
Importer emitted an internally tagged enum shape rejected by connection-import-protocol |
Match the host serde JSON shape exactly; for SSH auth use ssh-connection-import. |
Guardrails
- Do not combine DBeaver, Navicat, and Termius into one component unless the product explicitly shares storage and parsing semantics. Independent tools should remain separate WASM importers.
- Do not special-case product ids in the host. Add generic manifest, permission, WIT, or runtime capability support.
- Do not let the extension repo depend on
../onetcliat build time. Use vendored WIT and drift verification. - Do not claim local installation works until the installed composite folder is present and the host provider can list it.
- Do not leave long-running dev app processes active after build/test work unless the user asked to run the app.
- Do not trust display labels such as
Defaultas database types when the product stores type information in surrounding keys or path segments.
Version History
- 32b868d Current 2026-09-02 22:39


