mirror of
https://github.com/NomaDamas/k-skill.git
synced 2026-06-24 02:04:11 +00:00
Document direct zipcode helper execution so the executable follow-up stays discoverable
The approved Issue #96 branch already shipped the ePost English-address helper and executable shebang/mode fix. This follow-up only locks the last user-facing surface: docs and docs regression now mention the direct `./scripts/zipcode_search.py` entrypoint alongside the `python3` form, so the published guidance matches the actual executable helper behavior. Constraint: Keep the branch diff narrow and aligned with the already-approved Issue #96 scope Rejected: Add more helper code changes | executable behavior was already correct and verified Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep docs/tests aligned whenever helper entrypoint contracts change Tested: node --test scripts/skill-docs.test.js; python3 -m unittest scripts.test_zipcode_search; python3 scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"; ./scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"; npm run build; PYTHONPATH=.:scripts python3 -m unittest scripts.test_patent_search; npm run ci Not-tested: No additional live address samples beyond the documented Gangnam example
This commit is contained in:
parent
35c91a0717
commit
a6ad86dc3e
3 changed files with 3 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ https://www.epost.kr/search.RetrieveIntegrationNewZipCdList.comm
|
|||
|
||||
```bash
|
||||
python3 scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"
|
||||
./scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"
|
||||
```
|
||||
|
||||
```json
|
||||
|
|
|
|||
|
|
@ -552,6 +552,7 @@ test("zipcode-search docs lock the official postcode plus English-address extrac
|
|||
assert.match(doc, /"--retry-delay",\s+"1"/);
|
||||
assert.match(doc, /영문 주소|영문주소/);
|
||||
assert.match(doc, /python3 scripts\/zipcode_search\.py/);
|
||||
assert.match(doc, /\.\/scripts\/zipcode_search\.py/);
|
||||
assert.match(doc, /mktemp|임시 파일/);
|
||||
assert.doesNotMatch(doc, /urllib\.request/);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@ PY
|
|||
|
||||
```bash
|
||||
python3 scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"
|
||||
./scripts/zipcode_search.py "서울특별시 강남구 테헤란로 123"
|
||||
```
|
||||
|
||||
예시 출력:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue