-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill-sync.yaml
More file actions
45 lines (45 loc) · 1.04 KB
/
Copy pathskill-sync.yaml
File metadata and controls
45 lines (45 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: 1
sources:
- name: personal
type: local
path: ~/.skill-sync/skills
skills:
- blog
- code
- test
- docs
- todo
- todo-db
- benchbox
- SHARED/commit-framework
- SHARED/verify-framework
- SHARED/research-framework
- SHARED/compare-framework
- SHARED/shrink-framework
- SHARED/context-guide
- SHARED/debug-framework
- SHARED/slicing-framework
- SHARED/review-protocol
- skill-sync
- tidy-perms
targets:
claude:
dir: .claude/skills
tracked: true
ignore: [blog]
codex: .codex/skills
gemini: .gemini/skills
antigravity: .antigravity/skills
install_mode: mirror
config:
code:
lint: "uv run ruff check ."
lint_fix: "uv run ruff check --fix ."
format: "uv run ruff format ."
typecheck: "uv run ty check"
fast_test: "uv run -- python -m pytest -m fast -q"
verify: "uv run ruff check . && uv run ty check && uv run -- python -m pytest -m fast -q"
line_length: 120
test:
runner: pytest
coverage: "uv run -- python -m pytest --cov=benchbox --cov-report=term-missing"