Compare commits

...

1 Commits

Author SHA1 Message Date
Kim Morrison
64796b12ac chore: enable leanprover/skills plugin for Claude Code
This PR adds a `.claude/settings.json` that registers the
leanprover/skills plugin marketplace so Claude Code users working on
lean4 are prompted to install it. The plugin provides Agent Skills for
proof methodology, toolchain setup, bootstrapping, bisection, and PR
conventions.

Also un-ignores `.claude/settings.json` in `.gitignore` (the blanket
`settings.json` rule was blocking it).
2026-02-20 12:01:00 +00:00
2 changed files with 14 additions and 0 deletions

13
.claude/settings.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extraKnownMarketplaces": {
"leanprover": {
"source": {
"source": "github",
"repo": "leanprover/skills"
}
}
},
"enabledPlugins": {
"lean@leanprover": true
}
}

1
.gitignore vendored
View File

@@ -18,6 +18,7 @@ compile_commands.json
*.idea
tasks.json
settings.json
!.claude/settings.json
.gdb_history
.vscode/*
script/__pycache__