| Channel | Version | Status | Downloads (Est) | Strategy |
|---|---|---|---|---|
| NB Plugin Portal | 28.1.0 | Stable | 603 | Brand Awareness / Discovery |
| Maven Central | 28.1.0 | Stable | Unknown | Developer SDK Adoption |
| GitHub Releases | 28.1.0 | Stable | Unknown | Direct Binary Distribution |
| V2 (Local) | 1.0.0-SN | The Singularity | 0 | Future ROI / JASI Container |
Tip
One-Shot Portal Scraper: Run this snippet via RunningJVM.compileAndExecuteJava to fetch the latest count.
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import java.util.concurrent.Callable;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Anahata implements Callable<String> {
@Override
public String call() throws Exception {
String url = "https://plugins.netbeans.apache.org/catalogue/?id=125";
Document doc = Jsoup.connect(url).get();
Element downloadIcon = doc.selectFirst("i.fa-download");
if (downloadIcon != null) {
String text = downloadIcon.parent().text().trim();
Matcher m = Pattern.compile("(\\d+)$").matcher(text);
if (m.find()) return "Current Portal Downloads: " + m.group(1);
return "Found icon but could not parse count from: " + text;
}
return "Could not find download count on the page.";
}
}Important
Scarf API Token: GPf7FDFry9n4l3JHUNnrXaU9cWhLVV8KOGtF5YHKJOmDZXTPwi
- Plugin Package ID:
f315fd98-2ea2-42de-ad8e-f3702396d3ac - SDK Package ID:
ac594bd8-fd22-49b3-9626-88a888502a3c - Status: Sonatype integration enabled. Scarf is receiving logs from Maven Central.
- Parent Package ID:
[Pending] - Status: Snapshots enabled. Releases will be tracked via Scarf templates.
| Date | Milestone | Token ROI | Impact |
|---|---|---|---|
| 2026-02-07 | Portal Scrape: 603 DLs | High | Verified growth on Plugin Portal |
| 2026-02-06 | Stable Release: v28.1.0 | MAX | First stable version of the ecosystem. |
| 2026-02-06 | CI/CD Optimization | High | Resolved duplicate deployment IDs. |
| 2026-02-06 | Scarf Integration | High | Enabled organization-level download tracking. |
| 2026-02-06 | Portal Scrape: 588 DLs | High | Verified growth on Plugin Portal |
| 2026-02-05 | V1 Release: 28.0.18 | High | UI/UX Stability & Theme Overhaul |
- Enable Scarf in Sonatype: Done.
- Claim V2 Packages in Scarf: Add
uno.anahata:anahata-asi-parentto Scarf. - Automated Stats: Implement a script to pull Scarf data into this ledger.
- Library First: Release
gemini-java-client. - Wait for Central: Wait 5-10 minutes for the artifact to appear in Maven Central.
- Verify: Use
searchMavenIndexto confirm availability. - Plugin Second: Trigger the
anahata-netbeans-airelease. - V2 Sync: Ensure V2 snapshots are rolling out to Central.