You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ Detailed notes for each tagged release live under [`docs/releases/`](./docs/rele
5
5
6
6
## Unreleased
7
7
8
+
- Added a reproducible structural evidence benchmark with path-only and AST-symbol baselines, README chart, result JSON, and benchmark notes.
9
+
- Fixed Python entrypoint role scoring so `main.py` and similar entry files are not mislabeled as root configuration files.
8
10
- Added semantic Python extraction for call targets, dynamic imports, type references, raised exceptions, class attributes, and lightweight data-flow edges.
9
11
- Improved internal import resolution for detailed `from ... import ...` records and dynamic imports.
10
12
- Fed call/type/data-flow evidence into file prioritization, planning prompts, generated skeletons, and project summaries.
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,26 @@ Use it when a Python project needs coding assistants to follow the current modul
41
41
| Platform automation | A DevEx team runs the workflow across many Python services | Python API returns structured results and readiness status |
42
42
| Contributor onboarding | New contributors need project-specific implementation rules | Generated Skills and docs describe the repo's working contracts |
43
43
44
+
## Benchmark
45
+
46
+
`code2skill` is evaluated on structural evidence extraction before any LLM call. The benchmark compares two simple baselines against the semantic scanner used by the Skill generation pipeline.
The gold set covers route decorators, service calls, type references, data-flow edges, dynamic imports, raised exceptions, main guards, and internal dependency edges. Reproduce it with:
0 commit comments