Skip to content

Releases: YoniRaviv/DocPulse

DocPulse v1.1.0

14 Jun 13:00
2e950a6

Choose a tag to compare

What's Changed

  • feat: self-sufficient, vendor-neutral CLI for k8s/Jenkins by @YoniRaviv in #7

Full Changelog: v1.0.1...v1.1.0

DocPulse v1.0.1

12 Jun 08:17

Choose a tag to compare

Marketplace listing release. Functionally identical to v1.0.0 — the only change is a globally-unique action name (DocPulse — Self-Healing Docs) required for the GitHub Actions Marketplace. The repo slug, uses: YoniRaviv/DocPulse@v1, README, and the GHCR image are unchanged.

Docs that stay in sync with the heartbeat of the codebase.

DocPulse detects documentation sections invalidated by a pull request's code changes and commits surgical fixes directly onto the PR branch. A deterministic layer (tree-sitter chunking → code↔doc link graph → diff-driven suspect selection) decides what to check; a bounded agentic layer (an LLM verifier with read/grep tools, then a style-preserving repairer with a validation pass) decides stale or not, and how to fix it.

Usage

- uses: YoniRaviv/DocPulse@v1
  with:
    mode: repair
  env:
    ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
    OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
    GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    DOCPULSE_PR_NUMBER: ${{ github.event.pull_request.number }}

DocPulse v1.0.0

12 Jun 08:12
dc31be1

Choose a tag to compare

Docs that stay in sync with the heartbeat of the codebase.

DocPulse detects documentation sections invalidated by a pull request's code changes and commits surgical fixes directly onto the PR branch. A deterministic layer (tree-sitter chunking → code↔doc link graph → diff-driven suspect selection) decides what to check; a bounded agentic layer (an LLM verifier with read/grep tools, then a style-preserving repairer with a validation pass) decides stale or not, and how to fix it.

Highlights

  • CI-native — ships as a GitHub Action (uses: YoniRaviv/DocPulse@v1) and a public container image for any other CI (ghcr.io/yoniraviv/docpulse).
  • Language-agnostic — tree-sitter chunking validated across Python, TypeScript, and C#.
  • Two modescheck comments on drift; repair commits the doc fix straight onto the PR branch (self-skips to avoid re-trigger loops).
  • Keyless optionheuristics-only: true builds the link graph from name mentions, no embedding key required.
  • Any modelmodel: accepts any LiteLLM string (Anthropic, OpenAI, …).

Usage

- uses: YoniRaviv/DocPulse@v1
  with:
    mode: repair
  env:
    ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
    OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
    GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    DOCPULSE_PR_NUMBER: ${{ github.event.pull_request.number }}

See the README for configuration and the CLI.