Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add OpenAEC-Foundation/OpenAEC-Workspace-Composer --skill tauri-impl-databasegit clone --depth 1 https://github.com/OpenAEC-Foundation/OpenAEC-Workspace-ComposerWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/openaec-foundation/openaec-workspace-composer/tauri-impl-database)<a href="https://agentmods.dev/skills/openaec-foundation/openaec-workspace-composer/tauri-impl-database"><img src="https://agentmods.dev/badge/skills/openaec-foundation/openaec-workspace-composer/tauri-impl-database/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/openaec-foundation/openaec-workspace-composer/tauri-impl-database"><img src="https://agentmods.dev/badge/skills/openaec-foundation/openaec-workspace-composer/tauri-impl-database.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00112 | $0.03024 |
| Opus 5 | $0.00056 | $0.01512 |
| Sonnet 5 | $0.00022 | $0.00605 |
| Haiku 4.5 | $0.00011 | $0.00302 |
Grade A, and why
tauri-impl-database scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 440 lines — stays where its author put it; the contents beside it link to each section on GitHub.
tauri-impl-database
Decision Tree: Which Storage Approach
Need persistent data in Tauri 2?
|
+-- Simple key-value pairs (settings, preferences, cache)?
| --> tauri-plugin-store (Section 1)
|
+-- Relational data with SQL queries?
| |
| +-- Frontend-driven queries (JS/TS calls SQL directly)?
| | --> tauri-plugin-sql (Section 2)
| |
| +-- Backend-driven queries (Rust owns the data layer)?
| --> Custom DB via Rust commands (Section 3)
|
+-- Encrypted storage for secrets?
--> tauri-plugin-stronghold (out of scope, see plugin docs)
Section 1: tauri-plugin-store (Key-Value Storage)
When to Use
Use tauri-plugin-store for user preferences, application settings, small cache data, and any scenario where you need persistent key-value pairs without relational queries.
Setup
Rust side (src-tauri/Cargo.toml):
[dependencies]
tauri-plugin-store = "2"
Register the plugin (src-tauri/src/lib.rs):
tauri::Builder::default()
.plugin(tauri_plugin_store::Builder::default().build())
.run(tauri::generate_context!())
.expect("error while running tauri application");
Frontend side (package.json):
{
"dependencies": {
"@tauri-apps/plugin-store": "^2"
}
}
Permissions (src-tauri/capabilities/default.json):
{
"permissions": ["store:default"]
}
Eager Loading Pattern
ALWAYS use eager loading when you need the store immediately at component mount or app startup.
import { load } from '@tauri-apps/plugin-store';
// Eager: loads from disk immediately, awaits until ready
const store = await load('settings.json', { autoSave: true });
// CRUD operations
await store.set('theme', 'dark');
await store.set('user', { name: 'Alice', prefs: { lang: 'en' } });
const theme = await store.get<string>('theme');
// Returns undefined if key does not exist -- ALWAYS handle this
const hasKey = await store.has('theme');
// Enumeration
const allKeys = await store.keys();
const allValues = await store.values();
const allEntries = await store.entries();
const count = await store.length();
// Deletion
await store.delete('theme');
await store.clear();
// Manual persistence (only needed when autoSave is false)
await store.save();
// Reload from disk (discard in-memory changes)
await store.reload();
// Reset to default values
await store.reset();
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 440 lines · 112 tokens per session scan A 5aacf5ba2c4d
tauri-impl-database is a skill published in the GitHub repository OpenAEC-Foundation/OpenAEC-Workspace-Composer (5 stars, last pushed 5mo ago), licensed MIT. It adds 112 tokens to every session and 3,024 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
gonavi-cli
Operate databases through the GoNavi headless CLI — the gonavi executable shipped in verified GitHub Release archives. Covers listing/adding/importing saved connections, running SQL queries against saved connections or ad-hoc connection files, exporting result sets to csv/json/md/html/xlsx, batch-executing SQL files…
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
lark-base
A guide for managing Lark Base, Feishu's spreadsheet-like database and workspace tool. It covers tables, fields, records, views, formulas, forms, dashboards, applications, workflows, and permissions.
sql-query-builder
Build SQL queries for construction databases. Generate optimized SQL queries for construction data retrieval.
cwicr-data-loader
Load and parse DDC CWICR construction cost database from multiple formats: Parquet, Excel, CSV, Qdrant snapshots. Foundation for all CWICR operations.
cwicr-multilingual
Work with CWICR database across 26 languages. Cross-language matching, translation, and regional pricing.