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
ai-capabilities.json5.9 KB · 78 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
{
  "version": "1.0.0",
  "description": "Complete registry of AI capabilities in Gluecron and how each improves via the flywheel",
  "capabilities": [
    {
      "name": "Semantic Code Search",
      "description": "Search your codebase by meaning and intent, not just keyword matching",
      "how_it_works": "Embeds code chunks into vector space using Claude's understanding of code semantics. Queries are also embedded and matched by semantic similarity.",
      "model_used": "claude-sonnet-4-6",
      "flywheel_input": "Which results users clicked, whether they found what they needed, subsequent search refinements",
      "flywheel_output": "Improved embedding weighting for your codebase's specific domain language and patterns",
      "competitive_advantage_vs_github": "GitHub search is keyword + regex. Gluecron search understands that 'where do we validate payments' and 'payment validation logic' are the same question."
    },
    {
      "name": "AI PR Reviewer",
      "description": "Reviews PRs like a senior engineer on your team, not a generic linter",
      "how_it_works": "Reads the full PR diff, surrounding context, and your repo's historical patterns. Posts specific, actionable comments. Learns which comment styles your team accepts.",
      "model_used": "claude-opus-4-7",
      "flywheel_input": "Which review comments were accepted, dismissed, or argued against. What the final merged code looked like.",
      "flywheel_output": "Review style adapts to your team's standards. Comments get more precise and less noisy over time.",
      "competitive_advantage_vs_github": "GitHub Copilot code review is generic. Gluecron's reviewer learns your team's specific standards and enforces them consistently."
    },
    {
      "name": "Predictive CI",
      "description": "Runs only the tests that matter for the files you changed",
      "how_it_works": "Analyses changed files, maps them to test coverage data and historical failure correlations. Selects the minimal test set most likely to catch regressions.",
      "model_used": "claude-haiku-4-5",
      "flywheel_input": "Whether the selected tests caught the failures, whether missed tests would have caught additional failures",
      "flywheel_output": "Improved file-to-test mapping accuracy. Faster CI with higher confidence.",
      "competitive_advantage_vs_github": "GitHub Actions runs everything every time. Gluecron predicts which tests matter and cuts CI time by up to 60% without missing failures."
    },
    {
      "name": "Smart Merge",
      "description": "Resolves merge conflicts by understanding semantic intent, not just line differences",
      "how_it_works": "When a conflict occurs, reads both branches' changes in context, understands the intent of each, and proposes a resolution that satisfies both.",
      "model_used": "claude-opus-4-7",
      "flywheel_input": "Whether the proposed resolution was accepted, modified, or rejected. What the final resolution looked like.",
      "flywheel_output": "Improved conflict resolution accuracy for your codebase's common patterns.",
      "competitive_advantage_vs_github": "GitHub shows you the conflict. Gluecron resolves it."
    },
    {
      "name": "Auto Documentation",
      "description": "Generates and keeps documentation in sync with code changes",
      "how_it_works": "On every PR merge, scans changed files, updates or generates corresponding documentation, opens a follow-up PR with doc updates.",
      "model_used": "claude-sonnet-4-6",
      "flywheel_input": "Whether generated docs were accepted as-is, edited, or rejected. What the final docs looked like.",
      "flywheel_output": "Documentation style matches your team's voice and technical depth preferences.",
      "competitive_advantage_vs_github": "GitHub has no documentation automation. Gluecron ensures docs never go stale."
    },
    {
      "name": "Security Intelligence",
      "description": "Explains vulnerabilities in plain language with prioritized, context-aware fix suggestions",
      "how_it_works": "Scans dependencies and code on every push. For each finding, generates an explanation of the risk in your specific context and a concrete fix suggestion.",
      "model_used": "claude-sonnet-4-6",
      "flywheel_input": "Which findings developers fixed first, which they deferred, whether AI-suggested fixes were applied",
      "flywheel_output": "Improved prioritization: surfaces the vulnerabilities your team is most likely to act on, in the order most impactful for your risk profile.",
      "competitive_advantage_vs_github": "GitHub Dependabot lists CVEs. Gluecron explains what they mean for your code and tells you exactly what to change."
    },
    {
      "name": "Codebase Q&A",
      "description": "Ask questions about the repo in natural language, get accurate answers",
      "how_it_works": "Maintains a live semantic index of the codebase. Answers questions by retrieving relevant code chunks and synthesizing an accurate response.",
      "model_used": "claude-sonnet-4-6",
      "flywheel_input": "Whether the answer was rated helpful, follow-up questions asked, source code references clicked",
      "flywheel_output": "More accurate retrieval and better answer synthesis for your specific codebase structure.",
      "competitive_advantage_vs_github": "GitHub has no Q&A. Gluecron is the institutional knowledge layer for your codebase."
    },
    {
      "name": "Release Note Generator",
      "description": "Writes release notes that match your team's style and voice",
      "how_it_works": "Reads merged PRs and commits since last release, synthesizes a release note in your team's established style. Learns from edits to previous generated notes.",
      "model_used": "claude-sonnet-4-6",
      "flywheel_input": "How much the generated notes were edited before publishing",
      "flywheel_output": "Style drift toward zero edits needed over time.",
      "competitive_advantage_vs_github": "GitHub has no release note AI. Teams spend hours on this manually."
    }
  ]
}