{"slug":"harness-configure-dast-scan","name":"configure-dast-scan","description":">-","long_description":"---\nname: configure-dast-scan\ndescription: >-\n  Add Dynamic Application Security Testing (DAST) steps to existing Harness pipelines using Harness STO scanners.\n  Supports API DAST / Traceable (default), Burp Suite Enterprise, ZAP (OWASP), Nikto, and Nmap.\n  Scans running application instances for vulnerabilities including API security issues, injection flaws,\n  misconfigurations, and exposed services. Can insert the scan step into an existing CI or SecurityTests stage\n  or create a dedicated SecurityTests stage.\n  Use when asked to add DAST scanning, configure dynamic application testing, set up API security scanning,\n  scan a running application, or add runtime security testing to a pipeline.\n  Trigger phrases: add DAST scan, dynamic application security testing, API DAST, configure Traceable,\n  scan running app, add Burp Suite scan, add ZAP scan, add Nikto scan, runtime security scan, API security scan.\nmetadata:\n  author: Harness\n  version: 1.0.0\n  mcp-server: harness-mcp-v2\nlicense: Apache-2.0\ncompatibility: Requires Harness MCP v2 server (harness-mcp-v2)\n---\n\n# Configure DAST Scan\n\nAdd a Dynamic Application Security Testing (DAST) step to an existing Harness pipeline using Harness STO scanners. DAST scanners test running application instances for security vulnerabilities at runtime.\n\n## Instructions\n\n### Step 1: Establish Scope and Pipeline Context\n\nAsk for org, project, and pipeline identifier if not already known. This skill only works with existing pipelines.\n\n```\nCall MCP tool: harness_get\nParameters:\n  resource_type: \"pipeline\"\n  resource_id: \"<pipeline_identifier>\"\n  org_id: \"<organization>\"\n  project_id: \"<project>\"\n```\n\n### Step 2: Analyze Pipeline Structure\n\nParse the pipeline YAML to identify:\n- All stages and their types (`CI`, `SecurityTests`, `Deployment`, `Approval`)\n- Whether a `SecurityTests` stage already exists\n- Existing steps in each stage\n\nPresent the structure to the user:\n\n```\nPipeline: <name>\n\nStage 1: <stage_name> (type: <stage_type>)\n  - Step 1: <step_name> (type: <step_type>)\n  ...\n```\n\n**Ask the user where they want the DAST scanner step added:**\n\nPresent the available insertion points:\n- Any existing `SecurityTests` stage (scanner step is added into that stage's `execution.steps`)\n- Any existing `CI` stage (scanner step is added directly into that stage's `execution.steps`)\n- A new `SecurityTests` stage (appended to the pipeline)\n\n**Recommendation guidance:**\n- DAST scans run against a **live application instance** — they are best placed **after deployment** so the target is running\n- If the pipeline has a Deployment stage, recommend adding a `SecurityTests` stage **after** the deployment stage\n- If no deployment stage exists, the user must provide the target URL of an already-running instance\n- Adding to an existing `SecurityTests` stage is simplest if one already exists\n\nIf the user doesn't specify, default to adding a new `SecurityTests` stage at the end of the pipeline (or after the Deployment stage if one exists).\n\n### Step 3: Recommend Scanner Type\n\nPresent the available DAST scanners supported in Harness STO:\n\n**Available DAST Scanners:**\n- **API DAST (Traceable)** (default — Harness native API security scanner, formerly called Traceable)\n- **Burp Suite Enterprise** (commercial, comprehensive web app DAST with crawl + audit)\n- **ZAP** (OWASP Zed Attack Proxy, open-source web app scanner)\n- **Nikto** (open-source, web server scanner)\n- **Nmap** (open-source, network/port scanner with vulnerability scripts)\n\n**Default recommendation:** Use **API DAST (Traceable)** — the Harness native DAST scanner for API security testing. It connects with your Traceable account to initiate scans against existing scan configurations, and results integrate directly with Harness STO.\n\nAsk the user which scanner they prefer. If they don't specify, use API DAST (Traceable) as the default.\n\n**Step type mapping and scanner auth requirements:**\n\n| Scanner | `type` field | Product auth needed? | Auth fields |\n|---------|-------------|----------------------|-------------|\n| API DAST (Traceable) | `Traceable` | Yes | `domain` (Traceable platform URL), `access_token` (API token) |\n| Burp Suite Enterprise | `BurpEnterprise` | Yes | `domain` (Burp Enterprise URL), `access_token` (API key) |\n| ZAP | `Zap` | No | — |\n| Nikto | `Nikto` | No | — |\n| Nmap | `Nmap` | No | — |\n\n**If the user picks a scanner that requires auth (API DAST, Burp Suite):**\n\n1. Inform the user that scanner product credentials are required\n2. Ask for the required secret references from the table above — these must already exist as Harness secrets\n3. Format them as `<+secrets.getValue(\"project.<secret_identifier>\")>`\n4. These go into the `auth` block of the step spec\n\nExample prompt to user:\n> \"API DAST (Traceable) requires a platform domain and access token. Please provide:\n> 1. Your Traceable platform URL (e.g., `https://api.traceable.ai/`)\n> 2. The Harness secret identifier for your Traceable API token (e.g., `traceable_api_token`). I'll reference it as `<+secrets.getValue(\"project.traceable_api_token\")>`.\"\n\nIf the secret doesn't exist yet, suggest creating it first via `/create-secret` before proceeding.\n\n### Step 4: Select Scan Mode (API DAST / Traceable only)\n\n**This step applies only to API DAST (Traceable).** For other scanners (Burp Suite, ZAP, Nikto, Nmap), default to `orchestration` and skip to Step 5.\n\nPresent the three available scan modes and ask the user which one they want:\n\n**Available Scan Modes:**\n\n- **Orchestration** (default) — Triggers a new scan run within an existing Traceable Scan. Results are automatically saved in STO. Requires an active runner in Traceable.\n- **Extraction** — Retrieves the latest scan results from an existing Traceable Scan and imports them into STO. No new scan is triggered — useful for pulling results from scans run on a schedule or externally.\n- **Ingestion** — Reads scan results from a local JSON file and imports them into STO. The user must fetch results separately (e.g., via a Run step with Traceable API call). No Traceable credentials needed in the step itself.\n\nIf the user doesn't specify, default to **Orchestration**.\n\n**Fields required per mode:**\n\n| Field | Orchestration | Extraction | Ingestion |\n|-------|:---:|:---:|:---:|\n| Domain (Traceable URL) | Yes | Yes | No |\n| Access Token | Yes | Yes | No |\n| Scan Name (Suite ID) | Yes | Yes | No |\n| Runner Selection | Optional | No | No |\n| Ingestion File path | No | No | Yes |\n| Target Name (manual) | No | No | Yes |\n| Target Variant (manual) | No | No | Yes |\n\n**For Ingestion mode**, inform the user they need a preceding **Run step** to fetch results from Traceable's API and save them as a JSON file. Example command for the Run step:\n\n```\ncurl -H \"Authorization: Bearer $API_TOKEN\" \\\n  \"https://api.traceable.ai/graphql/scans/$SCAN_ID/vulnerabilities\" \\\n  -o /harness/vulnerabilities.json\n```\n\nThe ingestion file path (e.g., `/harness/vulnerabilities.json`) must be configured as a shared path in the stage.\n\n### Step 5: Collect Target Instance Details\n\nDAST scans require a running application target. Collect different fields based on the scanner:\n\n---\n\n**For API DAST (Traceable):**\n\nTraceable uses its own scan configurations managed in the Traceable platform. Collect based on the scan mode chosen in Step 4:\n\n**Orchestration mode:**\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| Traceable Domain | Yes | Platform URL, e.g., `https://api.traceable.ai/` or `https://api-staging.traceable.ai/` |\n| Access Token | Yes | Traceable API token (Harness secret reference) |\n| Scan Name (Suite ID) | Yes | The Traceable Scan ID from the scan URL (e.g., `b35b11b4-3e87-47df-8c2e-a5ceb5ea764c`) |\n| Runner Selection | No | `auto` (default) or manual Runner ID — runners must be active in Traceable |\n\n**Extraction mode:**\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| Traceable Domain | Yes | Platform URL, e.g., `https://api.traceable.ai/` |\n| Access Token | Yes | Traceable API token (Harness secret reference) |\n| Scan Name (Suite ID) | Yes | The Traceable Scan ID to pull latest results from |\n\n**Ingestion mode:**\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| Ingestion File | Yes | Path to the JSON results file, e.g., `/harness/vulnerabilities.json` |\n| Target Name | Yes | Manual target identifier (e.g., `my-api-service`) |\n| Target Variant | Yes | Manual variant label (e.g., `1.0.0` or `staging`) |\n\n---\n\n**For Burp Suite Enterprise:**\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| Burp Domain | Yes | Burp Enterprise server URL |\n| Access Token | Yes | Burp API key (Harness secret reference) |\n| Instance Domain | Yes | Target application URL, e.g., `https://myapp.io` |\n| Instance Protocol | No | `https` (default) or `http` |\n| Instance Port | No | TCP port (e.g., `443`, `8080`) |\n| Instance Path | No | Path to append (e.g., `/api/v1`) |\n| Scan Configuration | No | Default is `Crawl and audit lightweight`. See Step 5 for options |\n\n---\n\n**For ZAP, Nikto, Nmap (instance scanners):**\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| Instance Domain | Yes | Target application domain, e.g., `https://myapp.io` |\n| Instance Protocol | No | `https` (default) or `http` |\n| Instance Port | No | TCP port (e.g., `443`, `8080`, `3000`) |\n| Instance Path | No | Path to append (e.g., `/portal/us`) |\n\n---\n\n### Step 6: Generate the Scanner Step YAML\n\nUse the step `type` from the scanner mapping in Step 3.\n\n**For API DAST / Traceable (default — Orchestration mode):**\n\n```yaml\n- step:\n    type: Traceable\n    name: API_DAST_Scan\n    identifier: API_DAST_Scan\n    spec:\n      mode: orchestration\n      config: default\n      target:\n        type: instance\n        detection: auto\n      auth:\n        domain: <traceable_platform_url>\n        access_token: <+secrets.getValue(\"project.traceable_api_token\")>\n      tool:\n        suite_id: <traceable_scan_id>\n      advanced:\n        log:\n          level: info\n```\n\n**For API DAST / Traceable (Extraction mode):**\n\n```yaml\n- step:\n    type: Traceable\n    name: API_DAST_Scan\n    identifier: API_DAST_Scan\n    spec:\n      mode: extraction\n      config: default\n      target:\n        type: instance\n        detection: auto\n      auth:\n        domain: <traceable_platform_url>\n        access_token: <+secrets.getValue(\"project.traceable_api_token\")>\n      tool:\n        suite_id: <traceable_scan_id>\n      advanced:\n        log:\n          level: info\n```\n\n**For API DAST / Traceable (Orchestration with manual runner):**\n\n```yaml\n- step:\n    type: Traceable\n    name: API_DAST_Scan\n    identifier: API_DAST_Scan\n    spec:\n      mode: orchestration\n      config: default\n      target:\n        type: instance\n        detection: auto\n      auth:\n        domain: <traceable_platform_url>\n        access_token: <+secrets.getValue(\"project.traceable_api_token\")>\n      tool:\n        suite_id: <traceable_scan_id>\n        runner_id: <traceable_runner_id>\n      advanced:\n        log:\n          level: info\n```\n\n**For API DAST / Traceable (Ingestion mode):**\n\n```yaml\n- step:\n    type: Traceable\n    name: API_DAST_Scan\n    identifier: API_DAST_Scan\n    spec:\n      mode: ingestion\n      config: default\n      target:\n        type: instance\n        name: <target_name>\n        variant: <target_variant>\n      ingestion:\n        file: <ingestion_file_path>\n      advanced:\n        log:\n          level: info\n```\n\n**For Burp Suite Enterprise (Orchestration mode):**\n\n```yaml\n- step:\n    type: BurpEnterprise\n    name: Burp_Suite_Scan\n    identifier: Burp_Suite_Scan\n    spec:\n      mode: orchestration\n      config: default\n      target:\n        type: instance\n        detection: auto\n      auth:\n        domain: <burp_enterprise_url>\n        access_token: <+secrets.getValue(\"project.burp_api_key\")>\n      instance:\n        domain: <target_app_url>\n        protocol: https\n        port: <port>\n        path: <path>\n      adv","tagline":">-","category":"automation","tags":["agent-skill"],"author":"harness","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"harness/harness-skills","creatorName":"harness","creatorUrl":"https://github.com/harness","sourceUrl":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/harness-configure-dast-scan#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":104,"forks":18,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":33.95},"quality":{"score":60,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"104","tone":"neutral"},{"label":"Freshness","value":"1mo ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"Apache-2.0","tone":"neutral"}],"warnings":[]},"trust":{"version":"trust-score-v5","score":63,"base_score":71,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","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":["63/100 Trust Score v5","71/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":62,"weight":0.13,"status":"info","detail":"104 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"104 stars, 18 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":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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":22,"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"info","label":"GitHub adoption","detail":"104 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"104 stars, 18 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"status":"pass","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":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"104 GitHub stars","repoActivity":"104 stars, 18 forks","lastPushed":"1mo since push","license":"Apache-2.0","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","install":"npx skills add harness/harness-skills --skill configure-dast-scan","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add harness/harness-skills --skill configure-dast-scan","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","Financial domain: human review is required before use in a live investment workflow.","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":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"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":["automation","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add harness/harness-skills --skill configure-dast-scan","trust_score":63,"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","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"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":["automation","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","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":71,"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":63,"base_score":71,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","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":["63/100 Trust Score v5","71/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":62,"weight":0.13,"status":"info","detail":"104 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"104 stars, 18 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":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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":22,"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"info","label":"GitHub adoption","detail":"104 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"104 stars, 18 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"status":"pass","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":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"104 GitHub stars","repoActivity":"104 stars, 18 forks","lastPushed":"1mo since push","license":"Apache-2.0","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","install":"npx skills add harness/harness-skills --skill configure-dast-scan","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add harness/harness-skills --skill configure-dast-scan","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","Financial domain: human review is required before use in a live investment workflow.","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":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"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":["automation","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add harness/harness-skills --skill configure-dast-scan","trust_score":63,"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","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"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":["automation","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","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":71,"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":71,"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":62,"weight":0.13,"status":"info","detail":"104 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"104 stars, 18 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":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":64,"weight":0.12,"status":"info","detail":"credential or environment access, network or browser surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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":22,"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"id":"review_status","label":"Review status","score":88,"weight":0.05,"status":"pass","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":"info","label":"GitHub adoption","detail":"104 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"104 stars, 18 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"1mo since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"info","label":"Dependency/runtime risk","detail":"credential or environment access, network or browser surface"},{"status":"pass","label":"Install availability","detail":"npx skills add harness/harness-skills --skill configure-dast-scan"},{"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/harness/harness-skills/tree/main/skills/configure-dast-scan"},{"status":"pass","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":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"104 GitHub stars","repoActivity":"104 stars, 18 forks","lastPushed":"1mo since push","license":"Apache-2.0","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","install":"npx skills add harness/harness-skills --skill configure-dast-scan","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add harness/harness-skills --skill configure-dast-scan","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","Financial domain: human review is required before use in a live investment workflow."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"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":["automation","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","Autonomous investment, trading, tax, or suitability decisions without a qualified human review"],"knownRisks":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","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":34,"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":"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"}],"policy_warnings":["High-risk permission hints: Shell or command execution, Secrets or environment access","Permission surface may require sandboxing"],"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":63,"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","README/SKILL.md completeness: Public metadata needs stronger README/SKILL.md context","High-risk permission hints: Shell or command execution, Secrets or environment access","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"],"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":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate configure-dast-scan before installing it in an agent workflow","automation","Security and compliance 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 harness/harness-skills --skill configure-dast-scan"]},{"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 harness/harness-skills --skill configure-dast-scan"]},{"id":"trust_score","label":"Trust score","status":"warn","score":71,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","104 GitHub stars","Apache-2.0"]},{"id":"audit_score","label":"Audit score","status":"warn","score":74,"required_for_auto_install":true,"detail":"Needs review","evidence":["Permission surface may require sandboxing"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":34,"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":"warn","score":70,"required_for_auto_install":false,"detail":"Public metadata needs stronger README/SKILL.md context","evidence":["Usable metadata, review docs"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"Apache-2.0","evidence":["Apache-2.0"]},{"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":22,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Network access: medium","Filesystem 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/harness-configure-dast-scan/evals","api":"/api/agent/evals?slug=harness-configure-dast-scan","text":"/api/agent/evals?slug=harness-configure-dast-scan&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"harness-configure-dast-scan","name":"configure-dast-scan","description":">-","category":"automation","url":"https://www.openagentskill.com/skills/harness-configure-dast-scan","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","github_repo":"harness/harness-skills"},"suited_tasks":["Security and compliance workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect risky files","Prioritize findings","Explain remediation steps","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add harness/harness-skills --skill configure-dast-scan","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 harness-configure-dast-scan"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"configure-dast-scan\" agent skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" as a Claude Code skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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/harness-configure-dast-scan/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/harness-configure-dast-scan"},"trust":{"score":71,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"104 GitHub stars","repoActivity":"104 stars, 18 forks","lastPushed":"1mo since push","license":"Apache-2.0","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","install":"npx skills add harness/harness-skills --skill configure-dast-scan","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","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":["automation","agent-skill"],"known_risks":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","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":74,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"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":"Legal, policy, and compliance","scenario":"Security and compliance","maintenance":"1mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","high-compliance environments without internal security review","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review"],"agent_contract":{"task_input":"Use configure-dast-scan 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: 71/100 Manual review","Audit: 74/100 Needs review","Safety: 34/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"harness-configure-dast-scan (configure-dast-scan)","install_command":"npx skills add harness/harness-skills --skill configure-dast-scan","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":"harness-configure-dast-scan","task":"Use configure-dast-scan 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/harness-configure-dast-scan","api":"https://www.openagentskill.com/api/agent/skills/harness-configure-dast-scan","audit":"https://www.openagentskill.com/skills/harness-configure-dast-scan/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=harness-configure-dast-scan&task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/harness-configure-dast-scan/install","manifest":"https://www.openagentskill.com/api/registry/manifest/harness-configure-dast-scan"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"harness-configure-dast-scan","name":"configure-dast-scan","description":">-","category":"automation","url":"https://www.openagentskill.com/skills/harness-configure-dast-scan","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","github_repo":"harness/harness-skills"},"suited_tasks":["Security and compliance workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect risky files","Prioritize findings","Explain remediation steps","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add harness/harness-skills --skill configure-dast-scan","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 harness-configure-dast-scan"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"configure-dast-scan\" agent skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" as a Claude Code skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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/harness-configure-dast-scan/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/harness-configure-dast-scan"},"trust":{"score":71,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"104 GitHub stars","repoActivity":"104 stars, 18 forks","lastPushed":"1mo since push","license":"Apache-2.0","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","install":"npx skills add harness/harness-skills --skill configure-dast-scan","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","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":["automation","agent-skill"],"known_risks":["Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","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":74,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"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":"Legal, policy, and compliance","scenario":"Security and compliance","maintenance":"1mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","high-compliance environments without internal security review","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review"],"agent_contract":{"task_input":"Use configure-dast-scan 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: 71/100 Manual review","Audit: 74/100 Needs review","Safety: 34/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"harness-configure-dast-scan (configure-dast-scan)","install_command":"npx skills add harness/harness-skills --skill configure-dast-scan","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":"harness-configure-dast-scan","task":"Use configure-dast-scan 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/harness-configure-dast-scan","api":"https://www.openagentskill.com/api/agent/skills/harness-configure-dast-scan","audit":"https://www.openagentskill.com/skills/harness-configure-dast-scan/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=harness-configure-dast-scan&task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20configure-dast-scan%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/harness-configure-dast-scan/install","manifest":"https://www.openagentskill.com/api/registry/manifest/harness-configure-dast-scan"}},"supply_profile":{"track":{"slug":"legal","label":"Legal, policy, and compliance","shortLabel":"Legal","description":"Contract analysis, privacy, policy review, compliance checks, governance, and document risk review."},"scenario":{"label":"Security and compliance","description":"I need my agent to scan a project for security risks and summarize what needs attention.","useCases":[{"slug":"security-compliance","title":"Security and compliance"},{"slug":"local-desktop","title":"Local desktop"},{"slug":"browser-automation","title":"Browser automation"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add harness/harness-skills --skill configure-dast-scan","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":104,"starsLabel":"104","forks":18,"license":"Apache-2.0","qualityScore":60,"trustScore":71,"auditScore":74},"maintenance":{"status":"active","label":"1mo since push","daysSincePush":41,"lastPushedAt":"2026-07-29T01:59:11+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution"]},"coverageTags":["Legal","Security and compliance","automation","agent-skill"]},"audit":{"audit_score":74,"risk_level":"needs_review","risk_label":"Needs review","quality_score":60,"trust_score":71,"maintenance_score":88,"security_score":78,"install_score":92,"warnings":["Permission surface may require sandboxing","Financial research output is not financial advice; require human review before any live investment decision","Financial research output is not financial advice; require human review before any live investment decision.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 104 stars, 18 forks; issue activity unavailable in current metadata","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":14.15,"usage_score":0,"review_score":4.8,"metadata_score":3,"freshness_score":12},"platforms":["Claude Code"],"use_cases":[{"slug":"security-compliance","title":"Security and compliance","url":"https://www.openagentskill.com/use-cases/security-compliance"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"},{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"}],"stacks":[{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"},{"slug":"web-data-pipeline","title":"Web data pipeline","url":"https://www.openagentskill.com/collections/web-data-pipeline"},{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"}],"install":"npx skills add harness/harness-skills --skill configure-dast-scan","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 harness-configure-dast-scan","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 \"configure-dast-scan\" agent skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" as a Claude Code skill from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan. 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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 \"configure-dast-scan\" from https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan 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: >- 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\":\"harness-configure-dast-scan\",\"task\":\"Install configure-dast-scan\",\"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/harness/harness-skills/tree/main/skills/configure-dast-scan","github_repo":"harness/harness-skills","version":"1.0.0","license":"Apache-2.0","urls":{"web":"https://www.openagentskill.com/skills/harness-configure-dast-scan","repository":"https://github.com/harness/harness-skills/tree/main/skills/configure-dast-scan","api":"/api/agent/skills/harness-configure-dast-scan","install_api":"/api/skills/harness-configure-dast-scan/install"},"meta":{"created_at":"2026-09-07T02:56:02.944784+00:00","updated_at":"2026-09-07T02:56:03.07473+00:00","agent_friendly":true}}