# Send AI Interview to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-interview",
    "name": "AI Interview",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zhangdong/ai-interview",
    "canonicalUrl": "https://clawhub.ai/zhangdong/ai-interview",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-interview",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-interview",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "jobs/2026-02-28T02-16-02.521Z.json",
      "package.json",
      "run.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ai-interview",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:22:34.374Z",
      "expiresAt": "2026-05-06T03:22:34.374Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-interview",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-interview",
        "contentDisposition": "attachment; filename=\"ai-interview-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ai-interview"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-interview"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-interview",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-interview",
    "agentUrl": "https://openagent3.xyz/skills/ai-interview/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-interview/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-interview/agent.md"
  }
}
```
## Documentation

### AI Interview Skill

Turn a folder full of resumes into structured AI interview sessions. This skill uses Fuku.ai's free public API to generate AI interview reports.

### 🎯 Purpose

This is a Fuku.ai-specific skill that leverages their free, anonymous interview service. No user account, API key, or login required.

### 🔑 Authentication

This skill uses shared anonymous credentials provided by Fuku.ai for public access:

ItemValueUpload Endpointhttps://hapi.fuku.ai/hr/rc/anon/file/uploadJob APIhttps://hapi.fuku.ai/hr/rc/anon/job/invite/ai_interviewX-NUMBER Headerjob-Z4nV8cQ1LmT7XpR2bH9sJdK6WyEaF0uid Query Param1873977344885133312

These are fixed, shared credentials for Fuku.ai's free tier. All users of this skill use the same endpoints and identifiers. This is intentional—the service is designed for anonymous, no-login usage.

### Design Notes

No user credentials required: The service is free and public
No environment variables: Endpoints and credentials are hardcoded by design
Not self-hostable: This skill only works with Fuku.ai's hosted service
Privacy consideration: Resume files are sent to Fuku.ai's servers. Review their privacy policy before uploading sensitive documents.

### ✅ What It Does

Collects three mandatory inputs: job title, company name, report email.
Scans a resume folder for PDF/DOC/DOCX files (up to 100).
Uploads each resume to Fuku.ai's public endpoint and captures the returned file URLs.
Creates an AI interview job via Fuku.ai's API using the shared anonymous credentials.
Logs minimal job metadata locally and confirms the report email destination.

### 🧭 Workflow

Install & Prepare

cd skills/ai-interview && npm install (installs axios + form-data).
Subsequent runs only need node run.js ....



Gather Inputs

Ask the user for: job title, company, email for reports (validate email format).
Ask for the resume folder path inside the workspace. Confirm contents before proceeding.



Scan Folder

Accept only .pdf, .doc, .docx files.
Abort if folder is empty or missing.



Upload Resumes

From skills/ai-interview/, run node run.js --folder <dir> --jobTitle <title> --company <company> --email <email>.
The script auto-detects .pdf/.doc/.docx files (up to 100), uploads each to Fuku.ai's upload endpoint, and captures the returned file URLs.
On any failed upload, the script aborts and reports the .desc field from the API.



Trigger Interview Job

The same script immediately calls the interview creation endpoint with payload { jobTitle, company, email, fileUrls }.
Authentication uses hardcoded credentials (see "Hardcoded Configuration" table above).
Expect response { "code": 0, "data": { "id", "company", "title", ... } }.
If code is not 0, the script surfaces the error and stops.



Report Back

Confirm job creation, list resumes included, and restate the email destination.
Persist only the minimal identifiers (id, company, title) into ai-interview/jobs/<timestamp>.json—no need to keep full payloads.
Remind the user that AI interview reports are delivered directly to the email they provided.
A typical success response looks like:
{
  "code": 0,
  "data": {
    "id": "5b16b2d2f5e947f78244246a9f24e2cb",
    "company": "FUKU",
    "title": "cfoe",
    ... (truncated)
  },
  "desc": "successful"
}

### 🔒 Validation & Safety

Email: Must match /^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$/.
File count: Maximum 100 resumes per batch.
Upload errors: The Fuku API must return code: 0; otherwise surface the .desc field and ask whether to retry or skip that file.
PII handling: Do not log resume contents—only file names are logged (not full remote URLs).
HTTPS: Both endpoints use HTTPS.
Data destination: Resume files are sent to Fuku.ai's third-party service. Review their privacy policy before uploading sensitive documents.

### 📁 Local Storage

Minimal audit trail stored under ai-interview/jobs/:

ai-interview/
  jobs/
    2026-02-27T08-30-00Z.json  # job identifiers only

Each file contains only the essential identifiers (no resume data or full API responses):

{
  "timestamp": "2026-02-27T08:30:00Z",
  "jobId": "5b16b2d2f5e947f78244246a9f24e2cb",
  "company": "FUKU",
  "title": "cfoe"
}

### 🧪 Testing Tips

Use dummy resumes and a test email address for initial runs.
Validate that the email receives the AI interview report before marking the job done.
Note: This skill only works with Fuku.ai's production endpoints—there is no staging/mock mode.

### 🆘 Troubleshooting

IssueCauseFixUpload returns 413File too largeCompress resume or raise server limitfileUrls emptyUpload failed silentlyCheck upload response for success flagAPI 400Missing fieldsEnsure jobTitle/company/email/fileUrls filled

### 📣 User Prompt Template

"Great! Need the job title, company name, a mailbox for the interview report, and the folder path containing the resumes (PDF/DOC/DOCX)."

### 🚀 Next Steps

Automate email notifications to confirm when the interview report is delivered (future enhancement).
Add optional metadata per candidate (experience, notes) by extending the payload.

Happy interviewing! 🎙️
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zhangdong
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:22:34.374Z
- Expires at: 2026-05-06T03:22:34.374Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-interview)
- [Send to Agent page](https://openagent3.xyz/skills/ai-interview/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-interview/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-interview/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-interview)