@yukioa2z/visa-apply 3.0.0
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/LICENSE +21 -0
- package/README.md +49 -0
- package/bin/install.js +67 -0
- package/package.json +34 -0
- package/skill/SKILL.md +80 -0
- package/skill/agents/openai.yaml +7 -0
- package/skill/assets/visa-dossier-template.html +601 -0
- package/skill/references/adapter-schema.md +55 -0
- package/skill/references/core-intake.md +66 -0
- package/skill/references/countries/au.md +149 -0
- package/skill/references/countries/ca.md +124 -0
- package/skill/references/countries/jp.md +133 -0
- package/skill/references/countries/schengen.md +183 -0
- package/skill/references/countries/uk.md +144 -0
- package/skill/references/countries/us.md +134 -0
- package/skill/references/jurisdictions.json +1538 -0
- package/skill/references/live-route-check.md +76 -0
- package/skill/references/official-sources.json +1861 -0
- package/skill/references/pipeline.md +104 -0
- package/skill/references/quality-gates.md +52 -0
- package/skill/scripts/create_dossier.py +140 -0
- package/skill/scripts/source_registry.py +386 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Live Visa-Need And Entry Route Check
|
|
2
|
+
|
|
3
|
+
Run this check for every new application before collecting detailed form answers. Never infer a current visa requirement from the cached registry, general knowledge, a search snippet, or a prior trip.
|
|
4
|
+
|
|
5
|
+
## Route Key
|
|
6
|
+
|
|
7
|
+
Collect these facts first:
|
|
8
|
+
|
|
9
|
+
- destination and every transit country
|
|
10
|
+
- nationality or stateless/refugee status
|
|
11
|
+
- travel-document type, issuer, issue/expiry dates
|
|
12
|
+
- legal residence, residence status/expiry, and application location
|
|
13
|
+
- purpose, arrival date, duration, entries, arrival mode, and entry point
|
|
14
|
+
- self-transfer, overnight transit, airport change, or baggage recheck
|
|
15
|
+
- existing visas, residence permits, diplomatic/official status, or crew status
|
|
16
|
+
- age and accompanying guardian when minor rules may apply
|
|
17
|
+
|
|
18
|
+
## Mandatory Live Sources
|
|
19
|
+
|
|
20
|
+
1. Destination immigration authority or foreign ministry.
|
|
21
|
+
2. Destination embassy/consulate responsible for the application location.
|
|
22
|
+
3. Official ETA/eVisa/application portal when applicable.
|
|
23
|
+
4. Official sources for every transit country.
|
|
24
|
+
5. IATA Travel Centre/Timatic or the operating carrier for boarding-document cross-checks.
|
|
25
|
+
|
|
26
|
+
Government sources determine the legal rule. Timatic and carriers are operational cross-checks and may reveal boarding implementation, but they do not override the destination government. Delegated visa centres establish submission logistics only.
|
|
27
|
+
|
|
28
|
+
Use Browser/Web search on every run. Open the official page itself; do not rely on search-result text. Record the exact URL, authority, checked timestamp, page update/effective date when shown, and the applicant facts used for the lookup.
|
|
29
|
+
|
|
30
|
+
## Verdict Values
|
|
31
|
+
|
|
32
|
+
Use one of:
|
|
33
|
+
|
|
34
|
+
- `visa_free`
|
|
35
|
+
- `eta`
|
|
36
|
+
- `evisa`
|
|
37
|
+
- `visa_on_arrival`
|
|
38
|
+
- `consular_visa`
|
|
39
|
+
- `transit_authorization`
|
|
40
|
+
- `residence_route`
|
|
41
|
+
- `mixed`
|
|
42
|
+
- `unresolved`
|
|
43
|
+
|
|
44
|
+
`mixed` means the itinerary contains different routes, such as visa-free destination entry plus a transit authorization. `Unresolved` is valid only when the conflict and next verification action are visible.
|
|
45
|
+
|
|
46
|
+
## Required Findings
|
|
47
|
+
|
|
48
|
+
Capture all applicable conditions:
|
|
49
|
+
|
|
50
|
+
- eligible travel document and nationality/residence exceptions
|
|
51
|
+
- allowed purposes and work/study restrictions
|
|
52
|
+
- maximum stay, number of entries, validity window, and extension rules
|
|
53
|
+
- policy start/end dates or temporary-program dates
|
|
54
|
+
- passport validity, blank pages, damage, and emergency-document restrictions
|
|
55
|
+
- required arrival mode, approved ports, pre-registration, or invitation
|
|
56
|
+
- onward/return travel, funds, accommodation, insurance, vaccination/health, and registration
|
|
57
|
+
- ETA/eVisa/VOA fee, processing time, payment method, and issuance format
|
|
58
|
+
- transit airside/landside rules, self-transfer, airport change, and overnight stay
|
|
59
|
+
- minor, diplomatic/official passport, crew, refugee-document, and stateless-person exceptions
|
|
60
|
+
- existing visa or residence-permit substitutions
|
|
61
|
+
|
|
62
|
+
## Freshness Rules
|
|
63
|
+
|
|
64
|
+
- Check live sources on the day detailed intake starts.
|
|
65
|
+
- Recheck immediately before application submission or payment.
|
|
66
|
+
- Refresh when the route check is more than 7 days old, the itinerary changes, or a policy has a future effective date.
|
|
67
|
+
- Recheck entry and carrier requirements within 72 hours before departure.
|
|
68
|
+
- Never claim “latest” without a checked timestamp.
|
|
69
|
+
|
|
70
|
+
## Conflict Handling
|
|
71
|
+
|
|
72
|
+
If official pages disagree, keep the verdict `unresolved`, record both sources and dates, and seek clarification from the responsible mission or immigration authority. Do not choose the more convenient rule. If Timatic conflicts with a government source, record the carrier risk and contact the operating carrier before travel.
|
|
73
|
+
|
|
74
|
+
## Gate
|
|
75
|
+
|
|
76
|
+
Do not begin detailed form intake until the HTML shows the verdict, official basis, conditions, transit result, checked timestamp, and recheck deadline. Visa-free or ETA results may end the visa-form workflow and switch the dossier to entry-readiness tracking.
|