首页龙虾技能列表 › Elevate Your Profile At Work — 技能工具

Elevate Your Profile At Work — 技能工具

v1.0.0

Professional AI-powered platform that generates personalized career guidance based on user assessment data, skills, goals, and preferences.

0· 67·0 当前·0 累计
by @krishnakumarmahadevan-cmd (ToolWeb)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/28
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's declared purpose (personalized career guidance) matches its instructions and OpenAPI spec; it requests no credentials, installs nothing, and contains no code that contradicts its description.
评估建议
This skill is internally consistent with a career-guidance API spec, but 'benign' does not equal 'safe'—before installing or sending real data: 1) verify the operator and privacy/terms (no homepage or clear publisher is included here); 2) confirm where user assessment data will be sent and how it will be stored/retained; 3) avoid submitting sensitive PII or confidential company data until you trust the service; and 4) if you expect a hosted API, require authentication (API key/contract) rather t...
详细分析 ▾
用途与能力
The name, description, SKILL.md examples, and openapi.json all describe the same functionality (POST /api/career/guidance receiving assessmentData and returning guidance). There are no extra binaries, env vars, or unrelated dependencies requested that would be unnecessary for a career-guidance API.
指令范围
SKILL.md contains only API usage, example requests/responses, endpoint definitions, pricing, and marketing/about links. It does not instruct the agent to read local files, environment variables, or system state beyond the request payload, nor does it direct data to unexpected external endpoints (endpoints are described but no host is baked into the doc).
安装机制
No install spec and no code files that would be written to disk; the skill is instruction-only. This is the lowest-risk install model and is proportionate for a REST-API integration spec.
凭证需求
No required environment variables, credentials, or config paths are declared. That is consistent with the spec which documents a public API-style interface. There are no unexplained SECRET/TOKEN/KEY requests.
持久化与权限
Skill flags are default (always: false, user-invocable, agent invocation allowed). It does not request persistent elevated privileges or modify other skills' configuration. Nothing in the files indicates it needs an always-present or privileged stance.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/28

Initial release of Career Guidance Tool — an AI-powered platform for personalized career development insights. - Generates tailored career recommendations based on user assessments (background, skills, goals, preferences) - Provides actionable suggestions, career pathways, skill gap analysis, and resource recommendations - Supports session-based tracking and audit trails - REST API with endpoints for health check and career guidance generation - Flexible pricing plans, from Free to Enterprise level

● 无害

安装命令 点击复制

官方npx clawhub@latest install toolweb-elevate-your-profile-at-work
镜像加速npx clawhub@latest install toolweb-elevate-your-profile-at-work --registry https://cn.clawhub-mirror.com

技能文档

The Career Guidance Tool is an intelligent, AI-powered platform designed to provide personalized career guidance to professionals at any stage of their career journey. By analyzing comprehensive assessment data including background, skills, career goals, and professional preferences, the tool delivers actionable insights and strategic recommendations tailored to each user's unique situation.

This platform is ideal for career changers, professionals seeking advancement, individuals exploring new industries, and organizations looking to support employee development. The tool integrates seamlessly into career development programs, HR platforms, and personal career planning applications, enabling data-driven decision-making for career progression.

Key capabilities include personalized guidance generation, session-based tracking, multi-dimensional assessment analysis, and timestamp-based audit trails for compliance and record-keeping.

# Usage

Example Request:

{
  "sessionId": "sess_abc123def456",
  "userId": 12345,
  "timestamp": "2024-01-15T10:30:00Z",
  "assessmentData": {
    "sessionId": "sess_abc123def456",
    "timestamp": "2024-01-15T10:30:00Z",
    "background": {
      "currentRole": "Senior Software Engineer",
      "yearsExperience": 8,
      "industry": "FinTech",
      "education": "Bachelor's in Computer Science"
    },
    "skills": {
      "technical": ["Python", "Java", "AWS", "Kubernetes"],
      "soft": ["Leadership", "Communication", "Project Management"],
      "proficiencyLevel": "Advanced"
    },
    "goals": {
      "shortTerm": "Move into engineering leadership",
      "longTerm": "Become CTO or VP Engineering",
      "timeline": "2-3 years"
    },
    "preferences": {
      "workEnvironment": "Remote-flexible",
      "companySize": "Startup to Mid-size",
      "industryPreference": "Technology",
      "compensationExpectation": "$180K-$250K"
    }
  }
}

Example Response:

{
  "status": "success",
  "guidance": {
    "summary": "Your profile indicates strong potential for an engineering leadership transition within 18-24 months.",
    "recommendations": [
      "Pursue formal leadership certification or MBA to formalize management credentials",
      "Seek opportunities to lead cross-functional teams on strategic projects",
      "Build mentorship skills by guiding junior engineers and interns",
      "Expand domain expertise in system architecture and technical strategy"
    ],
    "careerPathways": [
      {
        "path": "Engineering Manager",
        "probability": "85%",
        "timeline": "12-18 months",
        "requiredSkills": ["Team Management", "Budgeting", "Strategic Planning"]
      },
      {
        "path": "Staff Engineer / Principal Engineer",
        "probability": "75%",
        "timeline": "18-24 months",
        "requiredSkills": ["System Design", "Architecture", "Technical Strategy"]
      }
    ],
    "skillGaps": [
      "Advanced people management",
      "Financial acumen for tech budgets",
      "Executive communication"
    ],
    "resourceRecommendations": [
      "Online course: Leadership Essentials for Technical Leaders",
      "Book: The Manager's Path by Camille Fournier",
      "Networking: Join engineering leadership communities"
    ]
  },
  "sessionId": "sess_abc123def456",
  "generatedAt": "2024-01-15T10:31:45Z"
}

# Endpoints

GET /

Summary: Root

Description: Root endpoint

Parameters: None

Response: JSON object (empty schema)


GET /health

Summary: Health Check

Description: Health check endpoint for monitoring service availability

Parameters: None

Response: JSON object (empty schema)


POST /api/career/guidance

Summary: Generate Guidance

Description: Generate personalized career guidance based on comprehensive assessment data

Request Body (application/json):

FieldTypeRequiredDescription
sessionIdstringYesUnique identifier for the guidance session
userIdinteger or nullNoUser identifier for tracking and personalization
timestampstringYesISO 8601 timestamp of the request
assessmentDataobjectYesComprehensive assessment data containing background, skills, goals, and preferences
assessmentData.sessionIdstringYesSession ID matching parent sessionId
assessmentData.timestampstringYesISO 8601 timestamp of assessment
assessmentData.backgroundobjectNoProfessional background information (education, experience, industry)
assessmentData.skillsobjectNoTechnical and soft skills inventory with proficiency levels
assessmentData.goalsobjectNoShort-term and long-term career objectives
assessmentData.preferencesobjectNoWork environment, industry, and compensation preferences
Responses:

StatusContent-TypeDescription
200application/jsonSuccessful generation of personalized career guidance
422application/jsonValidation error - missing or invalid required fields
# Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo
# About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

# References

  • Kong Route: https://api.mkkpro.com/career/elevate-your-profile-at-work
  • API Docs: https://api.mkkpro.com:8083/docs
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务