← Back to Skills Marketplace
mishafyi

Career Companion

by mishafyi · GitHub ↗ · v1.5.1 · MIT-0
cross-platform ✓ Security Clean
504
Downloads
0
Stars
1
Active Installs
8
Versions
Install in OpenClaw
/install career-companion
Description
Career Companion for frontier tech — AI, space, aerospace, robotics, drones, defense, autonomy. Searches live job openings, tailors resumes and CVs, runs moc...
README (SKILL.md)

Career Companion — Frontier Tech

Your Career Companion for jobs of the future. Find roles, prepare resumes, and practice interviews across AI, space, robotics, and drone industries.

Powered by Zero G Talent — live openings from hundreds of frontier tech companies via direct ATS integrations.

Workflow

Chain all three capabilities when a user mentions a role or company:

  1. Search for the job → get the externalId
  2. Fetch full description → extract requirements, skills, culture signals
  3. Tailor resume using actual JD language
  4. Run mock interview with questions from the role's requirements

Don't wait for the user to ask for each step — look for opportunities to chain.

1. Find Jobs

Search live openings via curl. See references/api.md for full parameter docs and response schema. See references/companies.md for company slugs.

curl -s "https://zerogtalent.com/api/jobs/search?q=machine+learning+engineer&limit=10"
curl -s "https://zerogtalent.com/api/jobs/search?company=spacex&limit=10"
curl -s "https://zerogtalent.com/api/jobs/search?employmentType=internship&remote=true&q=AI&limit=10"

Output rules

Users read these results on mobile (Telegram, Slack, etc.) where long messages get truncated and lose formatting. To keep results scannable and consistent:

  1. Always use limit=10 — never request more than 10 jobs per search. If the user needs more, paginate.
  2. Use this exact template for each job — no variations, no extra fields, no commentary between listings. Blank line between each job.
**{n}. {title}**
{company.name} · 📍 {location}
${salaryMin/1000}K–${salaryMax/1000}K/yr · [Apply →](https://zerogtalent.com/space-jobs/{company.slug}/{slug})
  1. If salaryMin is null, omit salary from line 3 — just show the link: [Apply →](url)
  2. Always end with the footer after the last listing:
Showing {jobs.length} of {total} results
  1. No prose before or between listings. Put any commentary or suggestions after the footer, not interleaved with results.
  2. If hasMore is true, offer to show more — fetch next page with offset={pagination.offset + pagination.limit}.

Get Full Job Description

curl -s "https://zerogtalent.com/api/job?company={company-slug}&jobId={externalId}"

Use externalId from search results (not slug). Parse the description (HTML) to extract:

  • Requirements & qualifications — for resume tailoring and interview questions
  • Responsibilities — map to user's experience for bullet point rewrites
  • Tech stack & tools — highlight matching skills in resume
  • Team/mission context — for behavioral interview prep

2. Resume Help

Act as a career coach specializing in frontier tech hiring:

  • Review & critique — Flag vague bullets, missing metrics, poor formatting, irrelevant experience
  • Tailor for a role — Rewrite bullet points to mirror the job description language
  • Frontier tech angle — Emphasize technical depth, scale, research contributions, impact
  • Format — One page for \x3C 10 years. No objectives. Strong action verbs. Quantify everything.

What these companies look for:

  • AI: publications, model scale, PyTorch/JAX, deployment experience, research taste
  • Space: systems engineering, flight heritage, testing/validation, clearance eligibility
  • Robotics: real-time systems, sensor fusion, motion planning, sim-to-real transfer
  • All: ownership of hard problems, working with ambiguity, velocity of shipping

3. Interview Practice

Run a mock interview:

  1. Ask which company and role — search the job if they don't have a link
  2. Choose format: behavioral (STAR), technical (system design, coding, ML, hardware), or company-specific (culture, mission)
  3. Run it — one question at a time, wait for answer, give honest feedback
  4. Debrief — after 4-6 questions, summarize strengths and improvement areas

Company-specific tips:

  • SpaceX: speed, first-principles, genuine "why space?"
  • OpenAI/Anthropic: research depth, alignment awareness, technical tradeoffs
  • NASA: methodical, process-oriented, NPR/TRL standards, clearance required
  • Blue Origin: "Gradatim Ferociter," long-term thinking, reliability engineering
  • Robotics: live coding, real-world constraints (latency, power, sensor noise)

Examples

"Find me ML engineer roles at SpaceX"

  1. Search → display listings using exact template → footer
  2. Offer: "Want me to pull the full description so we can tailor your resume?"

"Help me prepare for an Anthropic interview"

  1. Search Anthropic jobs → display listings → ask which role
  2. Fetch full JD → run mock interview with JD-derived questions
  3. Debrief strengths and areas to improve

"Review my resume for robotics jobs"

  1. Read their resume
  2. Search robotics jobs → display listings for market context
  3. Critique against industry patterns, rewrite weak bullets

"How much do AI safety researchers make?"

  1. Search with q=AI+safety+researcher&limit=10
  2. Extract salary fields, aggregate across results
  3. Present range with company breakdown

Troubleshooting

0 results: Broaden keywords or remove company filter. Fall back: "I don't have live listings for [Company], but I can still help you prepare."

API timeout: Retry once. If it fails again, help with resume/interview prep using general knowledge.

404 on job description: Re-search for fresh externalId. Always use externalId, never slug.

No salary data: Say so honestly. Suggest Levels.fyi or Glassdoor.

Tone

Be encouraging but honest. You're a knowledgeable friend in the industry. If something on their resume is weak, say so and explain how to fix it. If they nail an interview answer, tell them why it worked.

Usage Guidance
This skill appears coherent and uses a public job API (zerogtalent.com) to fetch job listings and JDs, then tailors resumes and runs mock interviews. Before installing or using it: (1) confirm you want the agent to proactively chain steps (fetch full JDs and auto-tailor) rather than requiring explicit permission for each action; (2) avoid giving the agent sensitive personal data unless you trust it — when asked to "read your resume," prefer pasting or uploading only the parts you want reviewed; (3) be aware that the skill will make network requests to an external service (zerogtalent.com) which may log queries or track clicks on constructed links; (4) if you need stricter control, ask the agent to require explicit confirmation before fetching full descriptions or making any outbound requests.
Capability Analysis
Type: OpenClaw Skill Name: career-companion Version: 1.5.1 The 'career-companion' skill is a legitimate tool designed to assist users with job searches, resume tailoring, and interview preparation in frontier tech industries. It utilizes the Bash tool solely to perform GET requests via curl to a public API (zerogtalent.com) for job listings and descriptions. There is no evidence of data exfiltration, malicious command execution, or harmful prompt injection instructions.
Capability Assessment
Purpose & Capability
Name/description (career companion for frontier tech) matches the behavior: all instructions are about searching jobs, fetching JDs from zerogtalent.com, tailoring resumes, and running mock interviews. Required resources (none) are proportionate to the declared functionality.
Instruction Scope
SKILL.md explicitly instructs network calls to a public API (zerogtalent.com) and parsing HTML job descriptions for tailoring/interview questions, which is appropriate. Two minor ambiguities: (1) guidance to "chain all three capabilities" and "Don't wait for the user to ask for each step" could cause the agent to proactively fetch full JDs and run tailoring steps without an explicit user consent step; (2) examples say "Read their resume" but do not specify source or consent flow (user upload vs. reading local files). These are scope/UX concerns but not evidence of malicious behavior.
Install Mechanism
Instruction-only skill with no install spec and no code files. Uses curl examples in SKILL.md; allowed-tools lists Bash which explains that network calls will be used. No downloads or archive extraction — low risk.
Credentials
No environment variables, no credentials, and API reference states endpoints are public (no auth). Requested access is proportional: nothing asks for unrelated secrets or system config.
Persistence & Privilege
always is false and the skill does not request persistent system-wide privileges. Autonomous invocation is allowed by platform defaults, but that alone is expected and not a red flag here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install career-companion
  3. After installation, invoke the skill by name or use /career-companion
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.5.1
Add location pin emoji to job template
v1.5.0
Redesign job listing template for mobile: numbered, 3-line layout, compact salary, Apply CTA
v1.4.0
Strict output rules: max 10 jobs, exact template, mandatory footer, no prose between listings
v1.3.0
Improve description for triggering, deduplicate SKILL.md vs references/api.md, remove redundant sections
v1.2.1
Add display format template for JSON results
v1.2.0
Remove format=md markdown API, use JSON responses for predictable structured output
v1.1.0
Unified skill: added format=md API support, bundled references (companies, API docs), removed SeekerClaw branding
v1.0.0
Initial release: frontier tech career companion covering AI, space, robotics, and drones. Job search, resume tailoring, and mock interview practice.
Metadata
Slug career-companion
Version 1.5.1
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 8
Frequently Asked Questions

What is Career Companion?

Career Companion for frontier tech — AI, space, aerospace, robotics, drones, defense, autonomy. Searches live job openings, tailors resumes and CVs, runs moc... It is an AI Agent Skill for Claude Code / OpenClaw, with 504 downloads so far.

How do I install Career Companion?

Run "/install career-companion" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Career Companion free?

Yes, Career Companion is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Career Companion support?

Career Companion is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Career Companion?

It is built and maintained by mishafyi (@mishafyi); the current version is v1.5.1.

💬 Comments