{
  "schemaVersion": "1.0",
  "item": {
    "slug": "deploydevnlu",
    "name": "Deploydevnlu",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/yusong-7456/deploydevnlu",
    "canonicalUrl": "https://clawhub.ai/yusong-7456/deploydevnlu",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/deploydevnlu",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deploydevnlu",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "index.js",
      "skill.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "deploydevnlu",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T11:58:48.691Z",
      "expiresAt": "2026-05-09T11:58:48.691Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deploydevnlu",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deploydevnlu",
        "contentDisposition": "attachment; filename=\"deploydevnlu-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "deploydevnlu"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/deploydevnlu"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/deploydevnlu",
    "agentPageUrl": "https://openagent3.xyz/skills/deploydevnlu/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deploydevnlu/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deploydevnlu/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DeployDevNLU",
        "body": "Deploy the application to SupplyWhy via Slack natural language commands."
      },
      {
        "title": "Instructions",
        "body": "Execute the following steps in order. Verify each step succeeds before proceeding to the next."
      },
      {
        "title": "Step 1: Add SSH Key to Agent",
        "body": "Run the following command to add the SSH key:\n\nssh-add ~/.ssh/supplywhy-dev-key.pem\n\nVerification: The command should output Identity added: ~/.ssh/supplywhy-dev-key.pem or similar. If you see \"Could not open a connection to your authentication agent\", the ssh-agent may not be running. If you see \"No such file or directory\", the key file is missing.\n\nStop and report to user if: The key cannot be added."
      },
      {
        "title": "Step 2: Test SSH Connection",
        "body": "Before deploying, verify the SSH connection works:\n\nssh supplywhy-dev-master \"echo 'SSH connection successful'\"\n\nVerification: Should output SSH connection successful. If you see connection timeout, permission denied, or host not found errors, the SSH connection is not working.\n\nStop and report to user if: SSH connection fails."
      },
      {
        "title": "Step 3: Update Image Tag",
        "body": "If an IMAGE_TAG argument was provided ($ARGUMENTS), update the deployment.yaml with the new tag:\n\nssh supplywhy-dev-master \"sed -i 's|590183820143.dkr.ecr.us-west-2.amazonaws.com/genie:.*|590183820143.dkr.ecr.us-west-2.amazonaws.com/genie:$ARGUMENTS|' genie/deployment.yaml\"\n\nVerification: Run a quick check to confirm the tag was updated:\n\nssh supplywhy-dev-master \"grep 'image:' genie/deployment.yaml\"\n\nThe output should show the new tag you provided.\n\nSkip this step if: No IMAGE_TAG argument was provided (deploy with existing tag).\n\nStop and report to user if: The sed command fails."
      },
      {
        "title": "Step 4: Deploy via kubectl",
        "body": "SSH into the EC2 server and run the kubectl deployment command:\n\nssh supplywhy-dev-master \"cd genie && kubectl apply -f deployment.yaml\"\n\nVerification: The kubectl output should show resources being created, configured, or unchanged. Look for lines like:\n\ndeployment.apps/xxx configured\nservice/xxx unchanged\n\nStop and report to user if:\n\nkubectl returns errors (e.g., \"error: the path does not exist\", \"connection refused\")\nAny resource shows error status"
      },
      {
        "title": "Step 5: Verify Deployment Status",
        "body": "After applying, check that the deployment is rolling out successfully:\n\nssh supplywhy-dev-master \"kubectl rollout status deployment -n default --timeout=60s\"\n\nVerification: Should show successfully rolled out for deployments. If it times out or shows errors, the deployment may have issues.\n\nReport to user: The final status of all deployments, whether successful or failed."
      },
      {
        "title": "Success Criteria",
        "body": "The deployment is successful when:\n\nSSH key was added successfully\nSSH connection to server works\nImage tag was updated (if argument provided)\nkubectl apply completed without errors\nDeployment rollout status shows success"
      },
      {
        "title": "Troubleshooting",
        "body": "If the deployment fails at any step:\n\nSSH key issues: Verify the key exists at ~/.ssh/supplywhy-dev-key.pem and has correct permissions (600)\nSSH connection issues: Check network access and that your IP is allowed in security groups\nkubectl apply errors: Verify deployment.yaml exists in the genie folder on the server\nRollout failures: Check pod logs with kubectl logs or describe the deployment with kubectl describe deployment"
      }
    ],
    "body": "DeployDevNLU\n\nDeploy the application to SupplyWhy via Slack natural language commands.\n\nInstructions\n\nExecute the following steps in order. Verify each step succeeds before proceeding to the next.\n\nStep 1: Add SSH Key to Agent\n\nRun the following command to add the SSH key:\n\nssh-add ~/.ssh/supplywhy-dev-key.pem\n\n\nVerification: The command should output Identity added: ~/.ssh/supplywhy-dev-key.pem or similar. If you see \"Could not open a connection to your authentication agent\", the ssh-agent may not be running. If you see \"No such file or directory\", the key file is missing.\n\nStop and report to user if: The key cannot be added.\n\nStep 2: Test SSH Connection\n\nBefore deploying, verify the SSH connection works:\n\nssh supplywhy-dev-master \"echo 'SSH connection successful'\"\n\n\nVerification: Should output SSH connection successful. If you see connection timeout, permission denied, or host not found errors, the SSH connection is not working.\n\nStop and report to user if: SSH connection fails.\n\nStep 3: Update Image Tag\n\nIf an IMAGE_TAG argument was provided ($ARGUMENTS), update the deployment.yaml with the new tag:\n\nssh supplywhy-dev-master \"sed -i 's|590183820143.dkr.ecr.us-west-2.amazonaws.com/genie:.*|590183820143.dkr.ecr.us-west-2.amazonaws.com/genie:$ARGUMENTS|' genie/deployment.yaml\"\n\n\nVerification: Run a quick check to confirm the tag was updated:\n\nssh supplywhy-dev-master \"grep 'image:' genie/deployment.yaml\"\n\n\nThe output should show the new tag you provided.\n\nSkip this step if: No IMAGE_TAG argument was provided (deploy with existing tag).\n\nStop and report to user if: The sed command fails.\n\nStep 4: Deploy via kubectl\n\nSSH into the EC2 server and run the kubectl deployment command:\n\nssh supplywhy-dev-master \"cd genie && kubectl apply -f deployment.yaml\"\n\n\nVerification: The kubectl output should show resources being created, configured, or unchanged. Look for lines like:\n\ndeployment.apps/xxx configured\nservice/xxx unchanged\n\nStop and report to user if:\n\nkubectl returns errors (e.g., \"error: the path does not exist\", \"connection refused\")\nAny resource shows error status\nStep 5: Verify Deployment Status\n\nAfter applying, check that the deployment is rolling out successfully:\n\nssh supplywhy-dev-master \"kubectl rollout status deployment -n default --timeout=60s\"\n\n\nVerification: Should show successfully rolled out for deployments. If it times out or shows errors, the deployment may have issues.\n\nReport to user: The final status of all deployments, whether successful or failed.\n\nSuccess Criteria\n\nThe deployment is successful when:\n\nSSH key was added successfully\nSSH connection to server works\nImage tag was updated (if argument provided)\nkubectl apply completed without errors\nDeployment rollout status shows success\nTroubleshooting\n\nIf the deployment fails at any step:\n\nSSH key issues: Verify the key exists at ~/.ssh/supplywhy-dev-key.pem and has correct permissions (600)\nSSH connection issues: Check network access and that your IP is allowed in security groups\nkubectl apply errors: Verify deployment.yaml exists in the genie folder on the server\nRollout failures: Check pod logs with kubectl logs or describe the deployment with kubectl describe deployment"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/yusong-7456/deploydevnlu",
    "publisherUrl": "https://clawhub.ai/yusong-7456/deploydevnlu",
    "owner": "yusong-7456",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/deploydevnlu",
    "downloadUrl": "https://openagent3.xyz/downloads/deploydevnlu",
    "agentUrl": "https://openagent3.xyz/skills/deploydevnlu/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deploydevnlu/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deploydevnlu/agent.md"
  }
}