Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
50f0b5a
Add LLM coding-agent REPL and goal-printing flags
strub May 26, 2026
44ff635
[llm] add LOAD ... -trace for before/after sentence inspection
strub May 27, 2026
fc963d7
[llm] relax +strict_bullets in REPL, add TREE and focus tag
strub May 30, 2026
49534c4
[llm] add FOCUS N and NEXT for explicit goal selection
strub May 30, 2026
6dd494c
[llm] add COMMIT to emit a +strict_bullets-friendly proof body
strub May 30, 2026
39f1e18
[llm] extract REPL into a dedicated EcLlm module
strub May 30, 2026
f4c96a1
[llm] split REPL dispatcher into Parse and Dispatch submodules
strub May 30, 2026
a008afd
[llm] diagnose missing-argument REPL commands at parse time
strub May 31, 2026
30cfd28
[llm] nested TREE and dotted-path FOCUS
strub May 31, 2026
25aa025
[llm] update CLAUDE.md with current workflow status
strub May 31, 2026
a81b40d
[llm] add -eval STR for scripted one-shot invocations
strub Jul 15, 2026
3d0ee05
[llm] use apply_pragma_option for loader pragmas (align with ec.ml co…
strub Jul 15, 2026
4b38280
Add -stdlib DIR flag to override the built-in standard library
strub Jul 17, 2026
d4fa3f7
[llm] scripted -eval runs exit nonzero when any command errors
strub Jul 23, 2026
8b245ed
[llm] LOAD applies the easycrypt.project of the loaded file
strub Jul 23, 2026
206a220
[llm] add golden-output regression harness for the REPL
strub Aug 21, 2026
792529a
[llm] COMMIT keeps bullets when run after qed
strub Aug 21, 2026
24d5ef2
[llm] COMMIT respects the LOAD prefix's open bullet frames
strub Aug 21, 2026
d251049
[llm] LOAD reports a missing file instead of an anomaly
strub Aug 21, 2026
62fee86
[llm] queries no longer pollute the COMMIT transcript
strub Aug 21, 2026
70463fe
[llm] tag GOALS / TREE / COMMIT replies with the focus indicator
strub Aug 21, 2026
b1d6151
[llm] a -trace LOAD that cannot trace keeps the prefix state
strub Aug 21, 2026
2c752a6
[llm] split ecLlm into an engine core and a text front-end
strub Aug 21, 2026
27ff64b
[llm] core: TRY semantics via EcLlmCore.try_step
strub Aug 21, 2026
82af54a
[llm] add `easycrypt mcp`: an MCP server front-end over EcLlmCore
strub Aug 21, 2026
e25e410
[llm] step runs every sentence of its input, not just the first
strub Aug 21, 2026
57836cd
[llm] queries no longer spend a uuid
strub Aug 21, 2026
00779dd
[llm] core computes `changed' for failures too
strub Aug 21, 2026
301cb3a
[llm] a golden harness for the MCP front-end
strub Aug 21, 2026
240adad
[llm] parity check: two front-ends, one core
strub Aug 21, 2026
446935e
[llm] real-client verification of `easycrypt mcp'
strub Aug 21, 2026
4c7d457
[llm] mcp: repeat the reply text inside structuredContent
strub Aug 21, 2026
e5f1aa3
[llm] document the MCP front-end
strub Aug 21, 2026
976358d
[llm] wire the llm/mcp golden harnesses into check and CI
strub Aug 21, 2026
4a4f116
[llm] SEARCH takes a pattern, not a command stream
strub Aug 21, 2026
f2279b2
[llm] COMMIT emits sibling subtrees in DAG order, not typing order
strub Aug 22, 2026
9c75473
[llm] escape envelope-shaped lines in REPL reply bodies
strub Aug 22, 2026
f89e257
[llm] `print' renders inside the reply, not around it
strub Aug 22, 2026
3288462
[mcp] repair non-UTF-8 bytes before they reach the wire
strub Aug 22, 2026
ce1eb53
[llm] LOAD rewinds the include path instead of growing it
strub Aug 22, 2026
1636007
[llm] ec_try restores the exact pre-call state, forward included
strub Aug 22, 2026
87c6e1e
[llm] correct the documented meaning of FOCUS and NEXT
strub Aug 22, 2026
263019d
[llm] COMMIT renders each proof of a session on its own
strub Aug 22, 2026
c1552da
[llm] QUIT and `exit.` no longer defeat the -eval exit status
strub Aug 22, 2026
1818c45
[llm] LOAD honours `upto` for every sentence kind, not just commands
strub Aug 22, 2026
c9dd347
[llm] drop the -upto/-lastgoals machinery the batch llm mode left behind
strub Aug 22, 2026
90b85ed
[llm] cover ec_load's nosmt and trace options on the MCP side
strub Aug 22, 2026
3583123
[llm] `pragma restart.` drops the checkpoint table too
strub Aug 22, 2026
11f17d2
[llm] document the front-end-facing half of ecCommands' interface
strub Aug 22, 2026
285202e
[llm] count open goals for the focus tag instead of rendering them
strub Aug 22, 2026
59f8574
[llm] share the argument checks both front-ends were duplicating
strub Aug 23, 2026
b8e89a7
[mcp] stop naming the JSON constructors yojson 3 removed
strub Sep 1, 2026
5243be5
[llm] re-record the print goldens for the new locate prefix
strub Sep 4, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [unit, stdlib, examples]
target: [unit, stdlib, examples, test-llm, test-mcp]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ CHECK += --bin=./ec.native
CHECK += --jobs="$(ECJOBS)"
CHECK += $(foreach arg,$(ECARGS),--bin-args="$(arg)")
CHECK += $(ECEXTRA) config/tests.config
LLMCHECK := scripts/testing/llm-golden
LLMCHECK += --bin=./ec.native
MCPCHECK := scripts/testing/mcp-golden
MCPCHECK += --bin=./ec.native
MCPPARITY := scripts/testing/mcp-parity
MCPPARITY += --bin=./ec.native
NIX ?= nix --extra-experimental-features "nix-command flakes"
PROFILE ?= dev

Expand All @@ -20,6 +26,7 @@ UNAME_S = $(shell uname -s)

# --------------------------------------------------------------------
.PHONY: default build byte native tests check examples
.PHONY: test-llm test-mcp
.PHONY: nix-build nix-build-with-provers nix-develop
.PHONY: clean install uninstall

Expand Down Expand Up @@ -49,7 +56,14 @@ stdlib: build
examples: build
$(CHECK) examples mee-cbc

check: unit stdlib examples
test-llm: build
$(LLMCHECK)

test-mcp: build
$(MCPCHECK)
$(MCPPARITY)

check: unit stdlib examples test-llm test-mcp
@true

nix-build:
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,13 @@ with proof scripts). At present, the only available front-end is based on Emacs'
[Proof General](https://github.com/ProofGeneral/PG).
However, a front-end for VSCode is currently in development.

Besides these, EasyCrypt ships an interface aimed at LLM agents rather
than at humans: `easycrypt llm`, an interactive REPL speaking a
machine-friendly protocol, and `easycrypt mcp`, a
[Model Context Protocol](https://modelcontextprotocol.io/) server over
stdio. Both drive the same proof engine, and both are documented in
[doc/llm/CLAUDE.md](doc/llm/CLAUDE.md).

### Proof-General (Emacs)

EasyCrypt mode has been integrated upstream. Please, go
Expand Down
Loading
Loading