Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
README.md3.0 KB · 83 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Gluecron for JetBrains IDEs

AI-native git inside IntelliJ IDEA, WebStorm, GoLand, PyCharm, RustRover, and
Rider — chat with the repo, draft commit messages, ship specs, voice-to-PR.

> The Gluecron platform: https://gluecron.com

## Features

- **Repo chat** — sidebar tool window grounded in the current repository.
- **AI commit messages** — sparkle button on the VCS commit dialog drops a
  Conventional Commits–style message into the input from your staged diff.
- **Pull requests / Issues / Standups** — embedded JCEF browser tabs that
  point at the live web UI; no second auth round-trip.
- **Ship a spec** — turn the current file into a Gluecron spec (auto-drafts
  a PR).
- **Voice-to-PR** — opens the `/voice` console in your browser.

## Install

### From the JetBrains Marketplace (coming soon)

1. **Settings****Plugins** → search for **Gluecron**.
2. Install, then restart the IDE.

### Sideload a .zip (current path)

1. Build the plugin once:
   ```bash
   cd editor-extensions/jetbrains
   ./gradlew buildPlugin
   ```
2. The artifact is written to
   `build/distributions/gluecron-jetbrains-0.1.0.zip`.
3. In the IDE: **Settings****Plugins** → gear icon →
   **Install Plugin from Disk…** and pick the zip. Restart when prompted.

Sideloads can also be served from the host: visit
`https://gluecron.com/install/jetbrains` for marketplace + sideload links.

## Configure

| Setting | Source | Description |
| --- | --- | --- |
| `host` | env `GLUECRON_HOST` | Override for self-hosted instances (defaults to `https://gluecron.com`). |
| `token` | env `GLUECRON_TOKEN` or IDE password safe | Personal access token (`glc_…`). |

Sign in with **Tools → Gluecron → Sign In (Personal Access Token)**. Create a
PAT at `https://gluecron.com/settings/tokens` (the **admin** scope is
required for the commit-message API).

## Commands

| Command | Where you'll find it |
| --- | --- |
| Sign In (Personal Access Token) | Tools → Gluecron |
| Chat with This Repo | Tools → Gluecron · Editor right-click menu |
| Open Pull Requests | Tools → Gluecron · VCS menu |
| Open Issues | Tools → Gluecron |
| Open AI Standups | Tools → Gluecron |
| Ship Current File as Spec | Tools → Gluecron · Editor right-click menu |
| Voice-to-PR | Tools → Gluecron |
| Generate AI Commit Message | VCS commit dialog (sparkle icon) |

## Screenshots

_Coming soon — drop PNGs into `editor-extensions/jetbrains/screenshots/` and
reference them here:_

- `screenshots/chat.png` — Gluecron tool window with the Chat tab open.
- `screenshots/commit.png` — sparkle button in the commit dialog.
- `screenshots/prs.png` — embedded PRs tab.

## How it talks to the server

- `POST /api/v2/ai/commit-message` — staged diff → commit text.
- `GET  /api/v2/user`              — PAT validation on sign-in.
- Tool-window tabs embed `/:owner/:repo/{chat,pulls,issues,standups}?embed=1`
  inside a JCEF browser — same `?embed=1` views as the VS Code extension.

## License

MIT — same as the rest of the Gluecron source.