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 TIBCOSoftware/flogo-enterprise-hub --skill rest-to-database-appgit clone --depth 1 https://github.com/TIBCOSoftware/flogo-enterprise-hubWrote 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/tibcosoftware/flogo-enterprise-hub/rest-to-database-app)<a href="https://agentmods.dev/skills/tibcosoftware/flogo-enterprise-hub/rest-to-database-app"><img src="https://agentmods.dev/badge/skills/tibcosoftware/flogo-enterprise-hub/rest-to-database-app/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/tibcosoftware/flogo-enterprise-hub/rest-to-database-app"><img src="https://agentmods.dev/badge/skills/tibcosoftware/flogo-enterprise-hub/rest-to-database-app.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00026 | $0.02504 |
| Opus 5 | $0.00013 | $0.01252 |
| Sonnet 5 | $0.00005 | $0.00501 |
| Haiku 4.5 | $0.00003 | $0.00250 |
Grade A, and why
rest-to-database-app 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 12d 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 — 222 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Key Facts (verified)
- Always run
fdacommands from your Flogo apps directory (e.g../Flogo_Apps/) - Always use the
-f <filename>.flogoflag on everyfdacommand to target the correct file — if omitted, fda defaults toflogo-project.flogoand will error if that file already exists or is not the intended target - REST trigger type:
tr_rest— exposes HTTP endpoints (default port 9999) - Log activity type:
act_general_log - Reply activity type:
act_general_reply - Database query activity types:
act_mysql_query,act_postgresql_query,act_sqlserver_query,act_oracledatabase_query - Database connection types:
con_mysql(MySQL),con_postgresql(PostgreSQL),con_sqlserver(SQLServer),con_oracledb(Oracle) - Activities are automatically linked in sequence when added (no need to call
create-link) - The
--connectionflag oncreate-activitylinks the activity to a named connection — this setssettings.connectionon the activity (theinput.Connectionfield is left empty and is unused) - When a connection is created, its settings are automatically pre-wired to application properties (e.g.
$property["MySQL.<ConnectionName>.Host"]). Set those properties to configure the actual DB credentials — do NOT setconnection.settings.*directly - Flow input parameters must be declared in
flow.metadata.inputbefore they can be referenced as$flow.<param> - Trigger handler input mapping (
action.input) is how path/query params flow from the trigger into the flow set-attributefor handler mappings uses--jsonValuefor object values- Always call
format-flowat the end to lay out the canvas properly
Step 1: Create project and database connection
Run all commands from your Flogo apps directory. Use -f <filename>.flogo on every command to target the correct file.
fda -f <filename>.flogo create-project <AppName> "<App description>"
# Choose the connection type that matches the target database
fda -f <filename>.flogo create-connection <ConnectionName> MySQL # or PostgreSQL, SQLServer, oracledb
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.
- 12d ago First seen · 222 lines · 26 tokens per session scan A 70d74b3bd3cd
rest-to-database-app is a skill published in the GitHub repository TIBCOSoftware/flogo-enterprise-hub (14 stars, last pushed 3d ago), licensed Apache-2.0. It adds 26 tokens to every session and 2,504 once invoked, about $0.0001 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-30.
Other skills, from other repositories
event-store-design
Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.
cqrs-implementation
Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.
nw-ddd-eventsourcing
Event Sourcing and CQRS as DDD implementation patterns — when to use, aggregate event streams, projections, snapshots, sagas, upcasting, conflict resolution.
nw-sd-patterns
Core distributed systems patterns - load balancing, caching, sharding, consistent hashing, message queues, rate limiting, CDN, Bloom filters, ID generation, replication, conflict resolution, CAP theorem.
firebase
Use when building on Firebase — Firestore data modeling, Security Rules, Auth and custom claims, Cloud Functions, Storage, modular Web/Admin SDK imports — including symptoms like a database open to the internet, a query rejected by rules, or a doc stuck at 1 write/sec. NOT managed-Postgres BaaS with SQL and RLS (that…
notion-connector
Use when wiring server code or a cron job to Notion as an ops backend over its HTTP API: pushing or mirroring database rows, two-way sync without duplicates, page blocks, or an integration broken by the 2025-09-03 data-source split. NOT generic REST wiring (that is api-connector-builder), NOT inbound Notion webhook…