{"slug":"humphrey4data-tableau-to-hex-migration","name":"tableau-to-hex-migration","description":"Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\".","long_description":"---\nname: tableau-to-hex-migration\ndescription: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\".\n---\n\n# Tableau/Looker/Power BI → Hex Dashboard Migration\n\nGiven a Tableau, Looker, or Power BI dashboard URL, produce a Hex app that is a faithful copy: same underlying queries and numbers, same filters, same colors/layout/labels, same tooltips. The build is driven by the **Hex agent** (`hex thread` CLI); source logic is extracted from the **ground truth** — Tableau's workbook file (.twbx), Looker's dashboard + query APIs, or Power BI's report definition (PBIR) + semantic model (TMDL/DAX) — and validated against the **same warehouse Hex queries** before it is handed to Hex.\n\nAll command snippets referenced below live in [reference.md](reference.md) — read it before starting Phase 1.\n\n**Adaptivity rule**: the procedure is environment-agnostic; only the leaf commands vary. Phase 0 pins four environment choices — **source BI** (Tableau / Looker / Power BI), warehouse engine (Snowflake / BigQuery / Databricks / Postgres-Redshift), source hosting (Tableau Cloud vs self-hosted Server; Looker-hosted vs customer-hosted; Power BI capacity/licensing tier), and OS (macOS vs Linux) — and every snippet in reference.md is either shared or labeled per branch. Follow your branch exactly; don't mix branches mid-run. (The Tableau + Snowflake + macOS branch is the most battle-tested; the others are documented equivalents.) Phases 2–5 are source-agnostic: Phase 1 is the **source adapter**, and whatever the source, it must produce the same artifact — a written spec with ground-truth queries, calc definitions, parameters/filters, colors, layout, and a rendered PNG.\n\n## Preconditions and non-goals\n\nConfirm these before Phase 1, and tell the user about anything that applies:\n\n- **Works for**: dashboards of charts, tables, and heatmaps whose datasources are reachable from a Hex warehouse connection (Tableau custom SQL or published sources; Looker explores/Looks on a warehouse connection Hex can also reach; Power BI DirectQuery/composite models over such a warehouse, or import models whose upstream source tables live in one), with quick filters and parameters (Looker: dashboard filters and listen-mapped tiles; Power BI: slicers and report/page/visual-level filters).\n- **Power BI hard blockers — check before promising anything**: (a) an **import-mode model with no reachable upstream warehouse** (data lives only inside the pbix/semantic model) has nothing for Hex to query — stop and tell the user; (b) measures are **DAX, not SQL** — every measure must be *translated* to warehouse SQL and proven equivalent, which makes Phase 2 the dominant cost and complex DAX (nested `CALCULATE` context transitions, heavy time intelligence) a per-measure judgment call; (c) licensing walls — XMLA read and export-to-file need Fabric capacity or Premium-Per-User, and the `executeQueries` REST API needs its tenant setting enabled. Budget roughly 2× the Tableau/Looker correction rounds.\n- **Hex workspace requirements**: the CLI must be enabled for the workspace, and Phase 3 depends on the **Hex agent (threads)** feature, which consumes the workspace's AI credits and may be disabled or exhausted on some plans. Verify early — `hex thread create` failing with a credits/feature error means the whole build path is blocked until the workspace admin enables it (there is no free fallback with comparable quality).\n- **No clean Hex equivalent — agree a fallback with the user up front**: Tableau Stories; dashboard actions (filter/highlight/URL/set actions); row-level security and user filters; user-specific data blending.\n- **Out of scope**: refresh schedules, permission migration, publishing/embedding, alert subscriptions. The deliverable is a draft Hex app at visual/numeric parity (Phase 5 evidence pack).\n- A container usually holds **several dashboards** (a Tableau workbook, a Power BI report's pages, a Looker folder). After Phase 1 lists them, **ask the user two scope questions** and record the answers in the spec:\n  1. **Which to migrate** — all of them, only the linked one, or a subset. Default to only the linked one if they don't care.\n  2. **One app or one app with tabs** — if the selected dashboards are **tabs of the same logical report** (a Tableau workbook published with tabs, a Power BI report's pages), the default is **one Hex Generative app with a tab per dashboard** (generative apps support tab navigation; say so in the build prompt and keep each tab's SQL cells scoped to its own dashboard). Only genuinely unrelated dashboards get separate apps (one thread each).\n\n  Whatever the grouping, never mix panels from a dashboard that isn't in scope into another dashboard's tab.\n\n## Progress checklist\n\n```\n- [ ] Phase 0: Setup + ground rules (tooling, fidelity policy, run manifest)\n- [ ] Phase 1: Extract the source spec (Tableau: twbx + XML; Looker: dashboard/query APIs; Power BI: PBIR + TMDL/DAX; + rendered PNGs)\n- [ ] Phase 2: Validate every query against the warehouse (the source's numbers as truth)\n- [ ] Phase 3: Build the Hex app with `hex thread create --new-project`\n- [ ] Phase 4: Self-check loop (screenshot diff, YAML, numbers) until parity\n- [ ] Phase 5: Deliver the parity evidence pack, get user sign-off\n```\n\n## Phase 0 — Setup and ground rules\n\nCheck what's installed; install only what's missing.\n\n1. **Hex CLI** (required — this drives the whole build; macOS/Linux, Windows via WSL):\n   ```bash\n   hex --version || curl -fsSL https://hex.tech/install.sh | bash\n   hex auth status || hex auth login          # opens browser; confirms workspace + user\n   ```\n2. **Source BI access** (required — pick your source branch):\n   - **Tableau**: a Personal Access Token for the Tableau site — works for both **Tableau Cloud** and self-hosted **Tableau Server** (Server needs 2019.4+ for PATs; branch notes: reference.md §1). If a Tableau MCP server is configured for your agent, its `env` block already has `SERVER`, `SITE_NAME`, `PAT_NAME`, `PAT_VALUE` — reuse those values for the REST API (config locations per agent: reference.md §5). Otherwise ask the user for a PAT (Tableau: My Account Settings → Personal Access Tokens). PATs expire after ~15 days of non-use. If sign-in returns `401001` (also shows up as the Tableau MCP server stuck in an `error` state), the PAT is dead — recovery steps: reference.md §1.\n   - **Looker**: **API3 credentials** (client ID + secret; user's Admin → Users → Edit → API keys, or ask a Looker admin) plus the instance base URL. Works for Looker-hosted and customer-hosted instances alike via `POST /api/4.0/login` (reference.md §11). If a Looker MCP is configured (managed MCP server or the MCP Toolbox `--prebuilt looker`), its env already has `LOOKER_BASE_URL`/`LOOKER_CLIENT_ID`/`LOOKER_CLIENT_SECRET` — reuse those. The API user needs access to the dashboard's folder and explores (API calls inherit their content permissions — a tile you can't see in the UI won't return SQL either).\n   - **Power BI**: a **Microsoft Entra token** — easiest via the Azure CLI: `az login --allow-no-subscriptions` then `az account get-access-token` per API audience (reference.md §12); a service principal also works but skips row-level security, which changes the numbers you validate against. The user needs Build permission on the semantic model and read+write on the report (the Fabric `getDefinition` API oddly requires write). Also verify the licensing preconditions above **now**, and check whether Microsoft's Power BI MCP servers are available (remote Fabric-hosted or local `@microsoft/powerbi-modeling-mcp`) — useful accelerators, not required (reference.md §12).\n3. **Warehouse CLI** (required for validation): determine which engine the Hex data connection uses — ask the user or check the Hex workspace's data connections — then set the `WH` branch and smoke-test it (reference.md preamble): Snowflake `snow`, BigQuery `bq`, Databricks `dbsqlcli`/Statement API, Postgres/Redshift `psql`. For any other engine (Trino, Athena, DuckDB/MotherDuck, ...), follow the same pattern: any CLI that takes a SQL string and returns JSON rows plugs into §8/§9 unchanged. **All validation SQL and everything you feed the Hex prompt must be in this engine's dialect** — Tableau's twb custom SQL and Looker's generated SQL already are (they ran against that warehouse), so never translate those; Power BI DAX is the exception that must be translated into this dialect (Phase 2). Never validate against a different engine than the one Hex will query.\n4. **Source MCP** (optional, nice for live queries from chat): Tableau MCP config in reference.md §5; Looker managed MCP server or MCP Toolbox config in reference.md §11; Power BI remote/local MCP config in reference.md §12. The REST API paths work without any of them.\n5. **Fidelity policy — ask the user now, not at Phase 4**: if the source dashboard turns out to be internally inconsistent (two panels disagreeing, a label that doesn't match its formula), should the copy **replicate the inconsistency faithfully (default)** or fix it in flight? The answer defines what \"parity\" means for the whole run; record it in the spec.\n6. **Run manifest — create it first, update it as IDs appear**: a migration spans hours and multiple sessions; `thread_id`/`project_id` must not live only in shell scrollback. Use a stable run directory that survives reboots — `~/.tab2hex/<dashboard-slug>/` (not `/tmp`) — for the spec, saved SQL, PNGs, and a `manifest.json` with: dashboard URL, source IDs (Tableau: workbook + view LUIDs; Looker: dashboard ID + tile query IDs; Power BI: workspace + report + semantic-model IDs), spec path, source PNG paths, `thread_id`, `project_id`, Hex draft URL, and the environment branch (source BI, `WH` engine + connection name, hosting flavor, OS). **Resuming a partial migration** = read the manifest, re-pin the same environment branch, `hex project export` to see current state, continue the existing thread with `hex thread continue` — never start a second thread for the same app.\n7. **Secret handling**: the source secret (Tableau PAT / Looker client secret / Entra token) lives only in your agent's MCP config (locations: reference.md §5, §11, §12) and session env vars — never in the repo, the spec, the run manifest, or the Hex prompt. Pass it to `curl` via a payload file, not inline `-d` (terminal transcripts capture full command text; reference.md §1, §11). Remind the user to revoke/rotate it when the migration is done.\n8. **Time budget**: this is a multi-hour task, not a one-shot. Expect ~10–15 min of thread time for the initial build, ~4–10 min per correction round plus export/validate/screenshot time, and **3+ correction rounds** (dense dashboards take more). Heavy validation queries may need a larger warehouse.\n9. **Approval fatigue — allowlist commands and front-load logins (tell the user this now, not mid-run)**: the run issues hundreds of terminal commands over hours, and every \"Allow once\" click makes the user the bottleneck (worse: an unattended run stalls at the first prompt).\n   - **Suggest allowlisting the repeated CLIs** in the agent's settings for this session/project: `curl`, `python3`, `unzip`, `hex`, the warehouse CLI (`snow` / `bq` / `dbsqlcli` / `psql`), and `az` (Power BI branch). Where: **Cursor** → Settings → Terminal command allowlist (or per-prompt \"Always allow\" for that command); **Claude Code** → `/permissions` → add allow rules like `Bash(hex:*)`, `Bash(curl:*)` (or `permissions.allow` in `.claude/settings.json`); **Codex** → approvals policy in config. Scope rules to these specific binaries — do NOT suggest blanket auto-approval of all commands, and never ","tagline":"Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, re","category":"design-creative","tags":["agent-skill"],"author":"Humphrey4data","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"Humphrey4data/tableau-to-hex-skill","creatorName":"Humphrey4data","creatorUrl":"https://github.com/Humphrey4data","sourceUrl":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":90,"forks":9,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":33.96},"quality":{"score":60,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"90","tone":"neutral"},{"label":"Freshness","value":"1mo ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow."]},"trust":{"version":"trust-score-v5","score":52,"base_score":60,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["52/100 Trust Score v5","60/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"90 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"1mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"90 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"90 GitHub stars","repoActivity":"90 stars, 9 forks","lastPushed":"1mo since push","license":"MIT","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1mo since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","trust_score":52,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":60,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":52,"base_score":60,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["52/100 Trust Score v5","60/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"90 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"1mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"90 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"90 GitHub stars","repoActivity":"90 stars, 9 forks","lastPushed":"1mo since push","license":"MIT","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1mo since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","trust_score":52,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":60,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":60,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"90 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"1mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"90 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"90 stars, 9 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"90 GitHub stars","repoActivity":"90 stars, 9 forks","lastPushed":"1mo since push","license":"MIT","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","1mo since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":21,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","summary":"This skill should not be selected by an agent without explicit human security review.","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","auto_install_policy":"block","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"auto_install_allowed":false,"human_review_required":true,"blocked":true,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"browser","label":"Browser automation","reason":"Skill may drive a browser or interact with web pages.","severity":"medium"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","auto_install_policy":"block","auto_install_allowed":false,"blocked":true,"human_review_required":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":57,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Agent safety gate: This skill should not be selected by an agent without explicit human security review.","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Agent safety gate: This skill should not be selected by an agent without explicit human security review.","Permission surface: secrets or environment access, shell or command execution"],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate tableau-to-hex-migration before installing it in an agent workflow","design-creative","Browser automation workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration"]},{"id":"trust_score","label":"Trust score","status":"warn","score":60,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","90 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":69,"required_for_auto_install":true,"detail":"Needs review","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":21,"required_for_auto_install":true,"detail":"This skill should not be selected by an agent without explicit human security review.","evidence":["Do not auto-install. Inspect the source, dependencies, and permission surface first.","Metadata combines secrets access with shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":88,"required_for_auto_install":false,"detail":"1mo since push","evidence":["1mo since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":18,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Browser automation: medium","Network access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration/evals","api":"/api/agent/evals?slug=humphrey4data-tableau-to-hex-migration","text":"/api/agent/evals?slug=humphrey4data-tableau-to-hex-migration&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"humphrey4data-tableau-to-hex-migration","name":"tableau-to-hex-migration","description":"Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\".","category":"design-creative","url":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","github_repo":"Humphrey4data/tableau-to-hex-skill"},"suited_tasks":["Browser automation workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate pages","Click and type safely","Check visual and DOM state","Understand table relationships","Write safer queries"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","Browser agents","CLI"],"install":{"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add humphrey4data-tableau-to-hex-migration"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"tableau-to-hex-migration\" agent skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"tableau-to-hex-migration\" as a Claude Code skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"tableau-to-hex-migration\" from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/humphrey4data-tableau-to-hex-migration/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/humphrey4data-tableau-to-hex-migration"},"trust":{"score":60,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"90 GitHub stars","repoActivity":"90 stars, 9 forks","lastPushed":"1mo since push","license":"MIT","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":69,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":60,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"RAG and knowledge","maintenance":"1mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content."],"agent_contract":{"task_input":"Use tableau-to-hex-migration in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 60/100 Manual review","Audit: 69/100 Needs review","Safety: 21/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"humphrey4data-tableau-to-hex-migration (tableau-to-hex-migration)","install_command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"humphrey4data-tableau-to-hex-migration","task":"Use tableau-to-hex-migration in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration","api":"https://www.openagentskill.com/api/agent/skills/humphrey4data-tableau-to-hex-migration","audit":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=humphrey4data-tableau-to-hex-migration&task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/humphrey4data-tableau-to-hex-migration/install","manifest":"https://www.openagentskill.com/api/registry/manifest/humphrey4data-tableau-to-hex-migration"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"humphrey4data-tableau-to-hex-migration","name":"tableau-to-hex-migration","description":"Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\".","category":"design-creative","url":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","github_repo":"Humphrey4data/tableau-to-hex-skill"},"suited_tasks":["Browser automation workflows","Claude Code teams","builders willing to evaluate younger projects","Navigate pages","Click and type safely","Check visual and DOM state","Understand table relationships","Write safer queries"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","Browser agents","CLI"],"install":{"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add humphrey4data-tableau-to-hex-migration"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"tableau-to-hex-migration\" agent skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"tableau-to-hex-migration\" as a Claude Code skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"tableau-to-hex-migration\" from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/humphrey4data-tableau-to-hex-migration/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/humphrey4data-tableau-to-hex-migration"},"trust":{"score":60,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"90 GitHub stars","repoActivity":"90 stars, 9 forks","lastPushed":"1mo since push","license":"MIT","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":69,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":60,"label":"Promising"},"supply":{"track":"Research and knowledge work","scenario":"RAG and knowledge","maintenance":"1mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content."],"agent_contract":{"task_input":"Use tableau-to-hex-migration in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 60/100 Manual review","Audit: 69/100 Needs review","Safety: 21/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"humphrey4data-tableau-to-hex-migration (tableau-to-hex-migration)","install_command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"humphrey4data-tableau-to-hex-migration","task":"Use tableau-to-hex-migration in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration","api":"https://www.openagentskill.com/api/agent/skills/humphrey4data-tableau-to-hex-migration","audit":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=humphrey4data-tableau-to-hex-migration&task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20tableau-to-hex-migration%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/humphrey4data-tableau-to-hex-migration/install","manifest":"https://www.openagentskill.com/api/registry/manifest/humphrey4data-tableau-to-hex-migration"}},"supply_profile":{"track":{"slug":"research","label":"Research and knowledge work","shortLabel":"Research","description":"Deep research, source comparison, literature review, RAG, knowledge search, and reports."},"scenario":{"label":"RAG and knowledge","description":"I need my agent to build a RAG workflow over documents and retrieve reliable context.","useCases":[{"slug":"browser-automation","title":"Browser automation"},{"slug":"database-sql","title":"Database and SQL"},{"slug":"local-desktop","title":"Local desktop"}]},"applicableAgents":["Claude Code","OpenAI Agents","Cursor","Browser agents","CLI"],"install":{"ready":true,"command":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":90,"starsLabel":"90","forks":9,"license":"MIT","qualityScore":60,"trustScore":60,"auditScore":69},"maintenance":{"status":"active","label":"1mo since push","daysSincePush":39,"lastPushedAt":"2026-07-30T23:41:41+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content.","Quality score needs review"]},"coverageTags":["Research","RAG and knowledge","design-creative","agent-skill"]},"audit":{"audit_score":69,"risk_level":"needs_review","risk_label":"Needs review","quality_score":60,"trust_score":60,"maintenance_score":88,"security_score":68,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md excerpt is truncated; the full procedure and reference.md are not fully visible, but the provided content indicates a thorough and well-structured workflow.","The skill relies on external credentials (PATs, API keys) and suggests command allowlisting, but does not explicitly mention verifying the authenticity of the dashboard URL to avoid phishing or malicious content.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","GitHub adoption: 90 GitHub stars","Stars/forks activity: 90 stars, 9 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":13.71,"usage_score":0,"review_score":5.25,"metadata_score":3,"freshness_score":12},"platforms":["Claude Code","OpenAI Agents","Cursor","Browser agents"],"use_cases":[{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"},{"slug":"database-sql","title":"Database and SQL","url":"https://www.openagentskill.com/use-cases/database-sql"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"rag-knowledge","title":"RAG and knowledge","url":"https://www.openagentskill.com/use-cases/rag-knowledge"}],"stacks":[{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"},{"slug":"frontend-product-ui","title":"Frontend and UI","url":"https://www.openagentskill.com/collections/frontend-product-ui"},{"slug":"web-data-pipeline","title":"Web data pipeline","url":"https://www.openagentskill.com/collections/web-data-pipeline"}],"install":"npx skills add Humphrey4data/tableau-to-hex-skill --skill tableau-to-hex-migration","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add humphrey4data-tableau-to-hex-migration","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"tableau-to-hex-migration\" agent skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"tableau-to-hex-migration\" as a Claude Code skill from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"tableau-to-hex-migration\" from https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Migrate a Tableau, Looker, or Power BI dashboard to a Hex app that matches it exactly — same queries, results, filters, colors, layout, and tooltips. Use when the user pastes a Tableau dashboard/view link, a Looker dashboard link, or a Power BI report link and asks to migrate, replicate, copy, or rebuild it in Hex, or mentions \"Tableau to Hex\" / \"Looker to Hex\" / \"Power BI to Hex\". After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"humphrey4data-tableau-to-hex-migration\",\"task\":\"Install tableau-to-hex-migration\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","github_repo":"Humphrey4data/tableau-to-hex-skill","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/humphrey4data-tableau-to-hex-migration","repository":"https://github.com/Humphrey4data/tableau-to-hex-skill/blob/main/SKILL.md","api":"/api/agent/skills/humphrey4data-tableau-to-hex-migration","install_api":"/api/skills/humphrey4data-tableau-to-hex-migration/install"},"meta":{"created_at":"2026-09-07T09:41:24.458149+00:00","updated_at":"2026-09-07T09:41:24.770924+00:00","agent_friendly":true}}