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
Blame · Line-by-line history

README.md

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

README.mdBlame40 lines · 1 contributor
eae38d1Claude1# Gluecron — VS Code Extension
2
3Talk to your Gluecron server straight from the editor. Explain files, open on
4the web, run semantic searches, scaffold failing tests.
5
6## Install (dev)
7
8```
9cd vscode-extension
10npm install
11npm run compile
12code --install-extension .
13```
14
15## Configure
16
17Add to your `settings.json`:
18
19```json
20{
21 "gluecron.host": "https://gluecron.com",
22 "gluecron.token": "glc_..."
23}
24```
25
26Tokens come from `/settings/tokens` on your Gluecron instance.
27
28## Commands
29
30| Command | What it does |
31|---|---|
32| `Gluecron: Explain This File` | 3-5 bullet summary via `/api/copilot/completions` |
33| `Gluecron: Open Current File on Web` | Opens `./owner/repo/blob/main/<path>#L<line>` |
34| `Gluecron: Semantic Search` | Prompts for a query, hits `/api/graphql` |
35| `Gluecron: Generate Tests for Current File` | Scaffolds a failing test via `/ai/tests?format=raw` |
36
37## Repo detection
38
39The extension reads `git config --get remote.origin.url` and strips the host
40prefix. If you're using a self-hosted Gluecron, set `gluecron.host` accordingly.