← 返回 Skills 市场
occupythemilkyway

Anubis Pro

作者 OccupyTheMilkyWay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
43
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install anubis-pro
功能描述
Anubis Pro -- Full Career Application Suite. Tailored resume + 3-tone cover letter + 10 interview Q&As + follow-up emails + application tracker. The only car...
使用说明 (SKILL.md)

Anubis Pro -- Full Career Application Suite

The complete application package. Tailored resume, 3 cover letter tones, 10 role-specific interview Q&As, 3 follow-up email templates, and an application tracker log.

Bundle deal: All 5 Egyptian skills for $29 -> ko-fi.com/s/7625accf3f (save $16)


Step 1 -- Install

pip3 install rich --break-system-packages --quiet

Step 2 -- Validate and load

import os, sys, re
from datetime import datetime
from rich.console import Console
from rich.panel import Panel
from rich.table import Table
from rich.rule import Rule
from rich import box

console = Console()

LICENSE_KEY = os.environ.get("LICENSE_KEY", "").strip()
if not LICENSE_KEY or not LICENSE_KEY.startswith("ANUBIS-PRO-"):
    console.print(Panel(
        "[red bold]Anubis Pro requires a license key.[/red bold]\
\
"
        "Get your key at: [bold cyan]ko-fi.com/occupythemilkyway[/bold cyan]\
\
"
        "Or try Anubis Standard ($5): [dim]openclaw skills install anubis[/dim]",
        title="License Required",
        border_style="red"
    ))
    sys.exit(1)

JD           = os.environ.get("JOB_DESCRIPTION", "").strip()
RESUME_PATH  = os.environ.get("RESUME_PATH", "").strip()
YOUR_NAME    = os.environ.get("YOUR_NAME", "[Your Name]").strip() or "[Your Name]"
COMPANY_NAME = os.environ.get("COMPANY_NAME", "").strip()
OUTPUT_DIR   = os.environ.get("OUTPUT_DIR", "./anubis_pro_output").strip()

if not JD or not RESUME_PATH or not os.path.exists(RESUME_PATH):
    console.print(Panel("[red]JOB_DESCRIPTION and valid RESUME_PATH are required.[/red]", title="Error", border_style="red"))
    sys.exit(1)

os.makedirs(OUTPUT_DIR, exist_ok=True)

with open(RESUME_PATH, encoding="utf-8", errors="replace") as fh:
    resume_text = fh.read()

# Auto-detect company
if not COMPANY_NAME:
    m = re.search(r"(?:at|@|join)\s+([A-Z][a-zA-Z\s&]+?)(?:\s+is|\s+are|\s+we|\.|,)", JD)
    COMPANY_NAME = m.group(1).strip() if m else "the company"

role_line = JD.split("\
")[0].strip()[:80]

console.print()
console.print(Panel.fit(
    f"[bold magenta]🐺 Anubis Pro -- Full Career Suite[/bold magenta]\
"
    f"Role:    [cyan]{role_line}[/cyan]\
"
    f"Company: [white]{COMPANY_NAME}[/white]\
"
    f"Name:    [white]{YOUR_NAME}[/white]\
"
    f"Output:  [green]{OUTPUT_DIR}/[/green]",
    border_style="magenta"
))
console.print(Rule("[magenta]Generating full application package...[/magenta]"))
print(f"\
=== RESUME ===\
{resume_text}\
=== END RESUME ===")
print(f"\
=== JOB DESCRIPTION ===\
{JD}\
=== END JD ===")

Step 3 -- Generate the full application suite

Generate FIVE documents:

1. TAILORED_RESUME.md -- Full resume rewrite, ATS-optimised, achievement-focused bullets mirroring JD language

2. COVER_LETTER_PROFESSIONAL.md -- Formal, structured cover letter 3. COVER_LETTER_CONVERSATIONAL.md -- Warm, personality-forward version
4. COVER_LETTER_EXECUTIVE.md -- High-level, strategic, results-only version

5. INTERVIEW_PREP.md -- 10 role-specific interview questions with ideal answer frameworks:

  • 3 behavioral (STAR format): based on the JD's key competencies
  • 3 technical: based on the actual skills listed in the JD
  • 2 situational: "What would you do if..." based on the role's challenges
  • 2 questions FOR the interviewer: sharp questions that show deep interest Each answer should include: the framework, 2-3 bullet points of what to cover, and a one-sentence power close.

6. FOLLOW_UP_EMAILS.md -- 3 follow-up email templates:

  • 24-hour thank you email (post-interview)
  • 1-week follow-up (if no response)
  • 2-week final follow-up (polite close-loop)

7. APPLICATION_LOG.md -- Application tracker entry:

| Date | Company | Role | Status | Next Action | Deadline |
|------|---------|------|--------|-------------|----------|
| [TODAY] | [COMPANY] | [ROLE] | Applied | Follow up | +7 days |

Step 4 -- Save and confirm

import os
from datetime import datetime
from rich.console import Console
from rich.panel import Panel
from rich.table import Table
from rich import box
console = Console()

date_str = datetime.now().strftime("%Y%m%d")
outputs = [
    (os.path.join(OUTPUT_DIR, f"tailored_resume_{date_str}.md"), "ATS-optimised resume"),
    (os.path.join(OUTPUT_DIR, f"cover_letter_professional_{date_str}.md"), "Cover letter (professional)"),
    (os.path.join(OUTPUT_DIR, f"cover_letter_conversational_{date_str}.md"), "Cover letter (conversational)"),
    (os.path.join(OUTPUT_DIR, f"cover_letter_executive_{date_str}.md"), "Cover letter (executive)"),
    (os.path.join(OUTPUT_DIR, f"interview_prep_{date_str}.md"), "10 interview Q&As"),
    (os.path.join(OUTPUT_DIR, f"follow_up_emails_{date_str}.md"), "3 follow-up templates"),
    (os.path.join(OUTPUT_DIR, f"application_log_{date_str}.md"), "Application tracker"),
]

tbl = Table(title="Anubis Pro -- Full Package Ready", box=box.SIMPLE, border_style="green")
tbl.add_column("File", style="cyan")
tbl.add_column("Contents", style="dim")
for path, desc in outputs:
    tbl.add_row(path, desc)
console.print()
console.print(tbl)
console.print(Panel(
    f"[bold green]Full career package generated.[/bold green]\
"
    f"[yellow]{len(outputs)} documents[/yellow] saved to [cyan]{OUTPUT_DIR}[/cyan]",
    border_style="green"
))

Save all 7 documents to OUTPUT_DIR using your file writing tool.

安全使用建议
Install only if you are comfortable with your full resume and job description being shown in the agent's console/log output. Use a dedicated output directory, avoid running it in shared terminals or recorded sessions, and prefer a virtual environment for the Python dependency.
能力评估
Purpose & Capability
The stated purpose is coherent: it reads a user-supplied resume and job description to generate tailored resume, cover letter, interview, follow-up, and application log files.
Instruction Scope
The workflow requires sensitive personal and employment/application content, then prints the full resume and full job description to stdout without an explicit privacy warning; that disclosure is broader than needed for ordinary document generation.
Install Mechanism
The install step is visible and limited to installing the Python rich package, but it uses --break-system-packages, which can modify the user's broader Python environment rather than an isolated environment.
Credentials
The requested environment variables generally fit the purpose: license key, job description, resume path, optional name/company, and output directory. The concern is not the inputs themselves, but the console echo of their full contents.
Persistence & Privilege
The skill creates a local output directory and seven dated markdown files, with no background process, privilege escalation, deletion, or network exfiltration shown. Same-day reruns may overwrite or reuse filenames depending on the agent's file-writing behavior.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install anubis-pro
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /anubis-pro 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Anubis Pro, the complete career application suite - Generates 7 documents: tailored ATS-optimized resume, 3 cover letter tones (professional, conversational, executive), 10 interview Q&As, 3 follow-up email templates, and an application log/tracker - Requires license key, job description, and resume path to operate - Includes step-by-step setup instructions and output directory customization
元数据
Slug anubis-pro
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Anubis Pro 是什么?

Anubis Pro -- Full Career Application Suite. Tailored resume + 3-tone cover letter + 10 interview Q&As + follow-up emails + application tracker. The only car... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 43 次。

如何安装 Anubis Pro?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install anubis-pro」即可一键安装,无需额外配置。

Anubis Pro 是免费的吗?

是的,Anubis Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Anubis Pro 支持哪些平台?

Anubis Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Anubis Pro?

由 OccupyTheMilkyWay(@occupythemilkyway)开发并维护,当前版本 v1.0.0。

💬 留言讨论