{
  "schemaVersion": "1.0",
  "item": {
    "slug": "java",
    "name": "Java",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/java",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/java",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/java",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "classes.md",
      "collections.md",
      "concurrency.md",
      "generics.md",
      "jvm.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. 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": "java",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T11:56:33.333Z",
      "expiresAt": "2026-05-11T11:56:33.333Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=java",
        "contentDisposition": "attachment; filename=\"java-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "java"
      },
      "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"
    },
    "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",
    "agentPageUrl": "https://openagent3.xyz/skills/java/agent",
    "manifestUrl": "https://openagent3.xyz/skills/java/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/java/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": "Quick Reference",
        "body": "TopicFileNulls, Optional, autoboxingnulls.mdCollections and iteration trapscollections.mdGenerics and type erasuregenerics.mdConcurrency and synchronizationconcurrency.mdClasses, inheritance, memoryclasses.mdStreams and CompletableFuturestreams.mdTesting (JUnit, Mockito)testing.mdJVM, GC, modulesjvm.md"
      },
      {
        "title": "Critical Rules",
        "body": "== compares references, not content — always use .equals() for strings\nOverride equals() must also override hashCode() — HashMap/HashSet break otherwise\nOptional.get() throws if empty — use orElse(), orElseGet(), or ifPresent()\nModifying while iterating throws ConcurrentModificationException — use Iterator.remove()\nType erasure: generic type info gone at runtime — can't do new T() or instanceof List<String>\nvolatile ensures visibility, not atomicity — count++ still needs synchronization\nUnboxing null throws NPE — Integer i = null; int x = i; crashes\nInteger == Integer uses reference for values outside -128 to 127 — use .equals()\nTry-with-resources auto-closes — implement AutoCloseable, Java 7+\nInner classes hold reference to outer — use static nested class if not needed\nStreams are single-use — can't reuse after terminal operation\nthenApply vs thenCompose — compose for chaining CompletableFutures\nRecords are implicitly final — can't extend, components are final\nserialVersionUID mismatch breaks deserialization — always declare explicitly"
      }
    ],
    "body": "Quick Reference\nTopic\tFile\nNulls, Optional, autoboxing\tnulls.md\nCollections and iteration traps\tcollections.md\nGenerics and type erasure\tgenerics.md\nConcurrency and synchronization\tconcurrency.md\nClasses, inheritance, memory\tclasses.md\nStreams and CompletableFuture\tstreams.md\nTesting (JUnit, Mockito)\ttesting.md\nJVM, GC, modules\tjvm.md\nCritical Rules\n== compares references, not content — always use .equals() for strings\nOverride equals() must also override hashCode() — HashMap/HashSet break otherwise\nOptional.get() throws if empty — use orElse(), orElseGet(), or ifPresent()\nModifying while iterating throws ConcurrentModificationException — use Iterator.remove()\nType erasure: generic type info gone at runtime — can't do new T() or instanceof List<String>\nvolatile ensures visibility, not atomicity — count++ still needs synchronization\nUnboxing null throws NPE — Integer i = null; int x = i; crashes\nInteger == Integer uses reference for values outside -128 to 127 — use .equals()\nTry-with-resources auto-closes — implement AutoCloseable, Java 7+\nInner classes hold reference to outer — use static nested class if not needed\nStreams are single-use — can't reuse after terminal operation\nthenApply vs thenCompose — compose for chaining CompletableFutures\nRecords are implicitly final — can't extend, components are final\nserialVersionUID mismatch breaks deserialization — always declare explicitly"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/java",
    "publisherUrl": "https://clawhub.ai/ivangdavila/java",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/java",
    "downloadUrl": "https://openagent3.xyz/downloads/java",
    "agentUrl": "https://openagent3.xyz/skills/java/agent",
    "manifestUrl": "https://openagent3.xyz/skills/java/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/java/agent.md"
  }
}