Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codellm-devkit/codeanalyzer-typescript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: codellm-devkit/codeanalyzer-typescript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: docs
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 60 files changed
  • 2 contributors

Commits on Jun 5, 2026

  1. Convert docs branch to slim Astro docs site

    Mirror the codeanalyzer-python and codeanalyzer-java docs branches:
    remove the analyzer source (it lives on main) and replace it with an
    Astro + Starlight documentation site that builds to ./dist and deploys
    to gh-pages.
    
    - Astro/Starlight scaffold (astro.config.mjs, package.json, tsconfig,
      content.config.ts, shared CLDK theme + logo/favicon)
    - GitHub Pages workflow (.github/workflows/deploy.yml) on push to docs
    - Content authored for the TypeScript analyzer: TSApplication schema,
      tsc-resolver call graph with RTA + phantom external symbols, Bun
      toolchain, and the experimental level-2 (CodeQL/entrypoints) layer
    rahlk committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    ec1f784 View commit details
    Browse the repository at this point in the history
  2. Update webpage

    Signed-off-by: Rahul Krishna <rkrsn@ibm.com>
    rahlk committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    4c738a0 View commit details
    Browse the repository at this point in the history
  3. Update the badges

    Signed-off-by: Rahul Krishna <rkrsn@ibm.com>
    rahlk committed Jun 5, 2026
    Configuration menu
    Copy the full SHA
    75f35ee View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2026

  1. fix: repoint docs base path and links to renamed repo

    The repo was renamed codeanalyzer-ts -> codeanalyzer-typescript, but the
    Astro base and all hardcoded content links still pointed at the old name,
    so GitHub Pages (now served at /codeanalyzer-typescript/) 404'd every
    asset — the site rendered unstyled. Update base, site edit links, and the
    /codeanalyzer-ts/ content-link prefixes.
    rahlk committed Jun 19, 2026
    Configuration menu
    Copy the full SHA
    69331b8 View commit details
    Browse the repository at this point in the history
  2. chore: drop stray files from docs branch, ignore main-branch leakage

    bun.lock, .codeanalyzer/, and a test fixture cache were accidentally
    committed (left in the shared working tree after building on main).
    Remove them and gitignore the paths so a future 'git add -A' on docs
    can't re-add them.
    rahlk committed Jun 19, 2026
    Configuration menu
    Copy the full SHA
    e728b86 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2026

  1. docs: document Neo4j property-graph output (scale, Kubernetes, enterp…

    …rise)
    
    Reframe the docs around the new `--emit neo4j` target: project the analysis
    into a labeled Neo4j property graph that scales beyond a single JSON file.
    Introduce the producer/consumer split — `cants` runs out-of-band as a
    CI/Kubernetes job pushing app-scoped subgraphs to Neo4j over Bolt, while the
    CLDK Python SDK and agents read the graph read-only via Neo4jConnectionConfig.
    
    - New Neo4j guide + graph-schema reference pages; sidebar entries
    - Neo4j property-graph hero visual (src/components/Neo4jPropertyGraph.astro)
    - Document --emit json|neo4j|schema, --app-name, --neo4j-* flags and NEO4J_* env
    - graph.cypher snapshot vs incremental Bolt push; per-app scoping; schema_version 2.0.0
    - CLDK read-back examples; extended architecture/concept mermaid diagrams
    - Fix stale CLI facts and cross-links; verified with `astro build`
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    rahlk and claude committed Jun 23, 2026
    Configuration menu
    Copy the full SHA
    6d9455f View commit details
    Browse the repository at this point in the history
Loading