Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .bot/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ author:
issue_url: ISSUE_URL
context_files:
- issue_body.txt # {{issue_body}}
# Close the loop: the author phase reads this log back so fixes benefit from
# what the retrospective has learned. MUST match `retrospective.log_path` below
# — the retrospective WRITES that path; the author only READS it if the two
# agree. (Set together, they connect learning → application.)
knowledge_log: .claude/knowledge/learning-log.md

Comment thread
eric-wang-1990 marked this conversation as resolved.
# Engine orchestration for the author phase. `bug-fix` runs the plan →
# author_tests → fix pipeline (write a failing test → fix the code → re-run to
Expand All @@ -99,3 +104,21 @@ author:
# specifics (commands, layout, live e2e requirement) live in
# prompts/engineer/system.md, not here.
flow: bug-fix

# Daily learning extraction (retrospective flow). Run by engineer-bot-learning.yml
# via `python -m databricks_bot_engine.engineer_bot.retrospective`: over an adaptive
# look-back window it sweeps every merged PR (diff + review comments, which the
# engine gathers ITSELF per PR) plus engineer-bot author runs, and if the model
# finds a durable, reusable learning, opens/updates a single rolling PR appending a
# dated section to log_path. Human-gated — never commits the canonical log directly.
# Omitting this block makes the retrospective a no-op.
#
# `system_prompt` is intentionally OMITTED: this repo ships no
# prompts/retrospective_system.md, so the engine's built-in base prompt is used.
# (A set-but-missing system_prompt file would be a hard error; an UNSET key uses
# the base. Add the key later only if you write a repo-specific additive prompt.)
# The learning log is created on first write — no seed file needed.
retrospective:
log_path: .claude/knowledge/learning-log.md # MUST match author.knowledge_log above
Comment thread
peco-review-bot[bot] marked this conversation as resolved.
branch_prefix: ai/learning-pr-
pr_label: engineer-bot-learning
12 changes: 12 additions & 0 deletions .claude/knowledge/learning-log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Engineer-bot learning log

This file is the canonical, human-gated knowledge log shared by two consumers
configured in `.bot/config.yaml`:

- `retrospective.log_path` — the retrospective flow APPENDS a dated section here
when it extracts a durable, reusable learning (via a human-gated rolling PR).
- `author.knowledge_log` — the author phase READS this file so fixes benefit from
what has been learned. Seeded here so the read path is never a missing file.

No learnings have been recorded yet. Dated sections are appended below by the
retrospective flow.
2 changes: 1 addition & 1 deletion .github/actions/bot-prelude/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ inputs:
# value to move every bot to a new engine commit; never @main.
description: 'Engine commit SHA (full 40-char) to install.'
required: false
default: 'd05dcb113332401b4aee8d6aa05c7107399ad44f'
default: '654a31d0d26d2b77bcb58e84f1e4abe018f9fd5a'
engine-repo:
description: 'owner/name of the engine repo.'
required: false
Expand Down
127 changes: 127 additions & 0 deletions .github/workflows/engineer-bot-learning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
# Engineer Bot — learning (retrospective) extraction — DAILY CRON.
#
# Over an adaptive look-back window the engine gathers merged PRs (diff + review
# comments) AND recent engineer-bot author-run console logs ITSELF via the GitHub
# API — no in-workflow context gathering, no per-PR trigger — and if the model
# finds durable, reusable learnings, opens ONE ROLLING PR on a stable branch
# (`ai/learning-pr`), appending a dated section per day until a human merges it.
# Human-gated by design: it NEVER commits the canonical log directly.
#
# Own job (NOT `uses: databricks/databricks-bot-engine/...`): an external repo
# can't resolve the internal engine's reusable workflows ("not found"). It shares
# the SAME prelude the other bots use — ./.github/actions/bot-prelude (tokens +
# Node + pinned engine install) — so the engine pin stays single-sourced in
# bot-prelude's `engine-ref` default (no second SHA to drift).
#
# Opt-in is purely via the `retrospective:` block in .bot/config.yaml + this
# workflow; absent that block the engine phase is a clean no-op.
name: Engineer Bot — Learning

on:
schedule:
# 17:23 UTC daily — off-peak, off-:00 minute (GitHub delays/drops on-the-hour crons).
- cron: "23 17 * * *"
workflow_dispatch:
inputs:
since:
description: 'ISO lower bound to shorten the window and recover a wedged flow. Empty = adaptive cursor.'
type: string
default: ''
window-hours:
# STRING, not number: a `type: number` workflow_dispatch input fails the
# whole run at startup ("workflow file issue") when combined with the
# `schedule` trigger. argparse coerces it to int downstream.
description: 'Fallback look-back window (hours) used only when there is no prior successful run.'
type: string
default: '24'

permissions:
contents: write # push the learning branch / open the learning PR
pull-requests: write
actions: read # Track B lists engineer-bot author runs + logs via the App token;
# the engineer-bot App installation must ALSO carry actions:read
# (a missing scope surfaces as a 403 that fails the whole run —
# list_author_runs raises, no escape hatch).
id-token: write # JFrog OIDC exchange for the engine/SDK/CLI install

concurrency:
# One learning run at a time; a queued run waits rather than racing the rolling
# PR's branch. Not keyed on a PR number (this is a cron, no PR event).
group: engineer-bot-learning-cron
cancel-in-progress: false

jobs:
learning:
environment: azure-prod # DATABRICKS_HOST / DATABRICKS_TOKEN live here
runs-on:
group: databricks-protected-runner-group
labels: linux-ubuntu-latest
timeout-minutes: 20
steps:
# Checkout the default branch (the learning PR is cut from it) FIRST, so the
# local `./` composites below resolve. persist-credentials:false — the
# retrospective sets its own authenticated push remote (see the run step),
# so no token is left in .git/config.
- name: Checkout default branch (learning PR is cut from it)
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
persist-credentials: false

# No separate `setup-jfrog` step. install-bot-engine (via bot-prelude) does
# its own keyless OIDC→JFrog mint and passes the credential through job-local
# files + per-command --index-url flags; it never reads PIP_INDEX_URL /
# JFROG_ACCESS_TOKEN from the environment. A preceding setup-jfrog would be
# redundant (the engine install is the only fetch — the learning flow runs no
# `go build`) AND harmful: setup-jfrog exports a token-bearing PIP_INDEX_URL
# to $GITHUB_ENV, exposing it to every later step including the model run.
# Mirrors the read-only sibling reviewer-bot.yml.
- name: Setup Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.11'

# Shared prelude: mint the engineer-bot token (opens the learning PR) + the
# engine-scoped token, set up Node, install the pinned engine (PAT-free). The
# engine pin comes from bot-prelude's `engine-ref` default — the SINGLE source
# of truth for every bot; there is no second SHA in this file to drift.
- name: Bot prelude (tokens + Node + engine install)
id: prelude
uses: ./.github/actions/bot-prelude
with:
app-id: ${{ secrets.ENGINEER_BOT_APP_ID }}
private-key: ${{ secrets.ENGINEER_BOT_APP_PRIVATE_KEY }}

# NOTE: no git-identity step — the engine's retrospective configures the git
# user AND DCO sign-off itself from .bot/config.yaml `bot_login_prefix`.
# NOTE: no context-gather step — the daily-cron engine enumerates merged PRs
# + author runs itself over the adaptive window.
- name: Extract learnings + open rolling PR
env:
GH_TOKEN: ${{ steps.prelude.outputs.token }}
GITHUB_REPOSITORY: ${{ github.repository }}
# Use the concrete `.../serving-endpoints/<model>/invocations` form (same
# as reviewer-bot.yml / engineer-bot.yml). sdk_agent.translate_endpoint
# strips it to the `.../serving-endpoints/anthropic` base the CLI needs.
# Do NOT use `.../serving-endpoints/anthropic/invocations` here: that hits
# translate_endpoint's already-v2 early-return, which keeps the trailing
# `invocations`, so the CLI appends `/v1/messages` →
# `.../anthropic/invocations/v1/messages` → HTTP 400 (unsupported path).
# The effective model is set by the engine default (no retrospective.model).
MODEL_ENDPOINT: https://${{ secrets.DATABRICKS_HOST }}/serving-endpoints/databricks-claude-opus-4-8/invocations
DATABRICKS_TOKEN: ${{ secrets.DATABRICKS_TOKEN }}
RUNNER_TEMP: ${{ runner.temp }}
SINCE: ${{ inputs.since }}
WINDOW_HOURS: ${{ inputs.window-hours }}
Comment thread
eric-wang-1990 marked this conversation as resolved.
# The retrospective pushes the learning branch with a plain `git push
# origin`, and the checkout ran persist-credentials:false — so set an
# authenticated push remote from the minted App token first, mirroring
# engineer-bot.yml's publish step. --since / --window-hours are passed only
# when provided via workflow_dispatch (the schedule trigger leaves them
# empty → the adaptive cursor drives the window).
run: |
git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
args=(--repo-dir "$GITHUB_WORKSPACE")
[ -n "$SINCE" ] && args+=(--since "$SINCE")
[ -n "$WINDOW_HOURS" ] && args+=(--window-hours "$WINDOW_HOURS")
python -m databricks_bot_engine.engineer_bot.retrospective "${args[@]}"
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
.vscode
.idea
.claude
# Ignore everything under .claude EXCEPT the engineer-bot learning log, which the
# retrospective flow must commit into its rolling PR and the author phase reads
# back (see .bot/config.yaml: author.knowledge_log / retrospective.log_path).
.claude/*
!.claude/knowledge/
.claude/knowledge/*
!.claude/knowledge/learning-log.md

# Binaries for programs and plugins
*.exe
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ help: ## Show this help.
all: gen fmt lint test coverage ## format and test everything

bin/golangci-lint: go.mod go.sum
GOBIN=$(pwd)/bin go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.12.2
GOBIN=$(CURDIR)/bin go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.12.2

bin/gotestsum: go.mod go.sum
@mkdir -p bin/
Expand Down
Loading