@softspark/ai-toolkit 2.7.1 → 2.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +2 -3
- package/app/.claude-plugin/plugin.json +1 -1
- package/app/agents/ai-engineer.md +2 -0
- package/app/rules/medplum/coding-style.md +56 -0
- package/app/rules/medplum/frameworks.md +51 -0
- package/app/rules/medplum/patterns.md +61 -0
- package/app/rules/medplum/security.md +58 -0
- package/app/rules/medplum/testing.md +56 -0
- package/kb/reference/language-rules.md +8 -4
- package/kb/reference/medplum-docs-map.md +535 -0
- package/llms-full.txt +549 -4
- package/llms.txt +1 -0
- package/manifest.json +7 -3
- package/package.json +1 -1
- package/scripts/_common.py +13 -0
- package/scripts/generate_aider_conf.py +5 -2
|
@@ -10,8 +10,11 @@ from pathlib import Path
|
|
|
10
10
|
|
|
11
11
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
|
12
12
|
|
|
13
|
+
from _common import DEFAULT_CLAUDE_MODELS
|
|
14
|
+
|
|
13
15
|
|
|
14
16
|
def main() -> None:
|
|
17
|
+
default_model = DEFAULT_CLAUDE_MODELS["sonnet"]
|
|
15
18
|
print("# Aider configuration generated by ai-toolkit")
|
|
16
19
|
print("# Regenerate using: ai-toolkit install --local")
|
|
17
20
|
print()
|
|
@@ -34,8 +37,8 @@ def main() -> None:
|
|
|
34
37
|
print(' - "go: go vet"')
|
|
35
38
|
print()
|
|
36
39
|
print("# Model configuration")
|
|
37
|
-
print("model:
|
|
38
|
-
print("editor-model:
|
|
40
|
+
print(f"model: {default_model}")
|
|
41
|
+
print(f"editor-model: {default_model}")
|
|
39
42
|
print()
|
|
40
43
|
print("# Auto-commit message formatting (matches our conventional commits)")
|
|
41
44
|
print(
|