{
  "schemaVersion": "1.0",
  "item": {
    "slug": "java-change-with-tests",
    "name": "Java changing with tests",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tanerilyazov/java-change-with-tests",
    "canonicalUrl": "https://clawhub.ai/tanerilyazov/java-change-with-tests",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/java-change-with-tests",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java-change-with-tests",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "java-change-with-tests",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T11:56:55.784Z",
      "expiresAt": "2026-05-11T11:56:55.784Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java-change-with-tests",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java-change-with-tests",
        "contentDisposition": "attachment; filename=\"java-change-with-tests-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "java-change-with-tests"
      },
      "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/java-change-with-tests"
    },
    "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/java-change-with-tests",
    "agentPageUrl": "https://openagent3.xyz/skills/java-change-with-tests/agent",
    "manifestUrl": "https://openagent3.xyz/skills/java-change-with-tests/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/java-change-with-tests/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "When to use",
        "body": "Any Java change that must be merged safely (feature/refactor/bugfix)."
      },
      {
        "title": "Inputs to request (if missing)",
        "body": "Acceptance criteria (1-3 bullets).\nModule name (if multi-module repo).\nBuild tool and test conventions.\nWhether integration tests are required for the change."
      },
      {
        "title": "Steps",
        "body": "Repo map (brief): identify the module, entrypoint, and test location.\nPlan: smallest diff that meets acceptance criteria.\nImplement: minimal edits.\nTests:\n\nprefer fast unit tests first\nadd integration tests only when required to validate behavior\n\n\nVerify:\n\nrun targeted tests\nrun mvn -q test (or module-scoped equivalent)\n\n\nOutput PR-ready summary with evidence."
      },
      {
        "title": "Verification commands (project-specific)",
        "body": "Use the repo's build tool and record the exact commands and results.\nPrefer targeted unit tests before full test suites."
      },
      {
        "title": "Output contract",
        "body": "Plan (3-6 steps)\nFiles changed + intent\nCommands run + results\nRisks + follow-ups"
      }
    ],
    "body": "java-change-with-tests\nWhen to use\nAny Java change that must be merged safely (feature/refactor/bugfix).\nInputs to request (if missing)\nAcceptance criteria (1-3 bullets).\nModule name (if multi-module repo).\nBuild tool and test conventions.\nWhether integration tests are required for the change.\nSteps\nRepo map (brief): identify the module, entrypoint, and test location.\nPlan: smallest diff that meets acceptance criteria.\nImplement: minimal edits.\nTests:\nprefer fast unit tests first\nadd integration tests only when required to validate behavior\nVerify:\nrun targeted tests\nrun mvn -q test (or module-scoped equivalent)\nOutput PR-ready summary with evidence.\nVerification commands (project-specific)\nUse the repo's build tool and record the exact commands and results.\nPrefer targeted unit tests before full test suites.\nOutput contract\nPlan (3-6 steps)\nFiles changed + intent\nCommands run + results\nRisks + follow-ups"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tanerilyazov/java-change-with-tests",
    "publisherUrl": "https://clawhub.ai/tanerilyazov/java-change-with-tests",
    "owner": "tanerilyazov",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/java-change-with-tests",
    "downloadUrl": "https://openagent3.xyz/downloads/java-change-with-tests",
    "agentUrl": "https://openagent3.xyz/skills/java-change-with-tests/agent",
    "manifestUrl": "https://openagent3.xyz/skills/java-change-with-tests/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/java-change-with-tests/agent.md"
  }
}