openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Visa

Visa application guidance with document tracking and timeline management. Use when user mentions travel visas, visa applications, visa documents, consulate i...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v2.1.0

统计:⭐ 0 · 189 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:agenticio/visa

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill's description promises a multi-file visa guidance system with local data storage and many helper scripts, but the package only contains a single benign-looking script and missing referenced scripts/docs — the packaging is incomplete or inconsistent.

目的

The SKILL.md describes multiple workflows and scripts (build_checklist.py, track_timeline.py, prep_interview.py, log_application.py, check_deadlines.py, compare_visas.py, document_status.py) and many reference markdown files, but the bundle only contains one script (scripts/identify_visa.py) and two files total. Either the skill is incomplete, or the SKILL.md was copied from a larger project. Requiring a full document-tracking/timeline system …

说明范围

Instructions state that all visa data is stored locally (memory/visa/) and list many scripts to run for logging, tracking and checklist generation. The included identify_visa.py only prints recommendations to stdout, does not read or write the declared memory files, and never calls its ensure_dir() function — so the runtime behavior described in SKILL.md (local persistent storage, timeline checks, checklists, interview prep) is not implemented…

安装机制

No install spec is provided (instruction-only with one included script). That is low-risk because nothing is downloaded or executed on install beyond the provided files.

证书

The skill requires no environment variables or external credentials, which is appropriate for an offline helper. The script references a path in the user's home (~/.openclaw/workspace/memory/visa) for local storage; storing sensitive visa documents locally is expected for this use-case but is a privacy consideration — users should confirm where the agent stores data and ensure it is acceptable.

持久

The skill is not marked always:true and does not request elevated privileges. It claims to store data locally under an agent workspace path; that is normal for a stateful skill, but the provided code does not actually persist data. Autonomous invocation remains enabled by default (not a problem by itself).

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Visa」。简介:Visa application guidance with document tracking and timeline management. Use w…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agenticio/visa/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: visa
description: Visa application guidance with document tracking and timeline management. Use when user mentions travel visas, visa applications, visa documents, consulate interviews, or entry requirements. Identifies correct visa type, builds document checklists, manages timelines, prepares for interviews, and tracks application status. NEVER guarantees visa approval.
---

# Visa

Visa navigation system. Get the right visa, get it right.

## Critical Privacy & Safety

### Data Storage (CRITICAL)
- **All visa data stored locally only**: `memory/visa/`
- **No government systems** connected
- **No document uploads** to external services
- **No application submission** through this skill
- User controls all data retention and deletion

### Safety Boundaries
- ✅ Identify visa types and requirements
- ✅ Build document checklists
- ✅ Track application timelines
- ✅ Prepare for interviews
- ❌ **NEVER guarantee** visa approval
- ❌ **NEVER replace** licensed immigration attorneys
- ❌ **NEVER submit** applications on your behalf

### Data Structure
Visa data stored locally:
- `memory/visa/applications.json` - Active applications
- `memory/visa/documents.json` - Document checklist and status
- `memory/visa/timelines.json` - Application timelines and deadlines
- `memory/visa/interview_prep.json` - Interview preparation
- `memory/visa/requirements.json` - Country-specific requirements

## Core Workflows

### Identify Visa Type
```
User: "What visa do I need for Germany?"
→ Use scripts/identify_visa.py --country Germany --purpose work --duration 6months
→ Analyze situation, recommend visa category
```

### Build Document Checklist
```
User: "What documents do I need for Schengen visa?"
→ Use scripts/build_checklist.py --visa schengen --nationality US
→ Generate complete document list with specifications
```

### Track Timeline
```
User: "Track my visa application"
→ Use scripts/track_timeline.py --application-id "VISA-123"
→ Show deadlines, upcoming actions, document expiry alerts
```

### Prepare for Interview
```
User: "Prep me for my visa interview"
→ Use scripts/prep_interview.py --visa-type work --country Canada
→ Generate likely questions and recommended responses
```

### Log Application
```
User: "I submitted my application today"
→ Use scripts/log_application.py --country Japan --visa-type tourist --submission-date 2024-03-01
→ Track application with timeline and reminders
```

## Module Reference
- **Visa Types**: See [references/visa-types.md](references/visa-types.md)
- **Document Checklists**: See [references/documents.md](references/documents.md)
- **Timeline Management**: See [references/timelines.md](references/timelines.md)
- **Interview Preparation**: See [references/interview.md](references/interview.md)
- **Denied Applications**: See [references/denials.md](references/denials.md)
- **Entry Requirements**: See [references/entry-requirements.md](references/entry-requirements.md)

## Scripts Reference
| Script | Purpose |
|--------|---------|
| `identify_visa.py` | Identify correct visa type |
| `build_checklist.py` | Generate document checklist |
| `track_timeline.py` | Track application timeline |
| `prep_interview.py` | Prepare for visa interview |
| `log_application.py` | Log new application |
| `check_deadlines.py` | Check upcoming deadlines |
| `compare_visas.py` | Compare visa options |
| `document_status.py` | Check document status |