Data Viz Specialist

v1.0.0

Professional career roadmap platform for aspiring data visualization specialists with personalized learning paths and specialization guidance.

0· 40·0 current·0 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name, description, SKILL.md, and openapi.json all describe a career roadmap generator for data visualization; there are no unrelated environment variables, binaries, or installs required. The requested capabilities match the stated purpose.
Instruction Scope
SKILL.md provides example requests/responses and documents API endpoints, but does not specify a base URL/host or explain how the agent should reach the service. The instructions do not ask the agent to read unrelated files, environment variables, or exfiltrate data, but they are somewhat incomplete/ambiguous about runtime behavior (how/where to call the documented endpoints or whether generation happens locally).
Install Mechanism
No install spec and no code files beyond an openapi.json and SKILL.md. Instruction-only skills have minimal disk/write risk. There is no external download or archive extraction.
Credentials
The skill declares no required environment variables, credentials, or config paths. Nothing requests unrelated or excessive secrets.
Persistence & Privilege
The skill does not request always:true and uses default model invocation semantics (agent may call it autonomously). Nothing indicates modification of other skills or system-wide settings.
Assessment
This skill appears coherent and low-risk because it requires no installs or credentials, but exercise caution before using it: 1) The SKILL.md/openapi describe API endpoints but do not provide a base URL or hosting details — ask the publisher or documentation how the agent will reach the service or whether roadmap generation is local. 2) Because the skill's source is unknown and there's no homepage, avoid submitting real personal data, PII, or secrets in example requests; test it with synthetic or minimal data first. 3) If you need production use, prefer skills from known publishers or ones that include a clear host/endpoint and privacy policy. 4) Note that the agent can invoke the skill autonomously by default — if you want to restrict that, adjust invocation settings in your agent or review policy controls.

Like a lobster shell, security has layers — review code before you run it.

latestvk97d42khzc47phetzxygaj4xsn83s4aa

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Overview

The Data Visualization Specialist Roadmap is a professional development platform designed to guide individuals through a structured career progression in data visualization. It provides personalized roadmaps based on individual assessment data, including current experience levels, existing skills, and professional goals. This platform is ideal for career changers, junior visualization developers, and professionals looking to specialize in specific areas of data visualization.

The platform offers comprehensive learning paths, specialization options, and AI-driven roadmap generation that adapts to each user's unique background and aspirations. Whether you're starting from scratch or advancing your expertise, this tool creates a clear, actionable progression plan with milestones and skill benchmarks tailored to your career trajectory.

Organizations and individual practitioners benefit from data-driven career planning that aligns skill development with industry demands and emerging visualization technologies.

Usage

Example Request

Generate a personalized roadmap by submitting your current assessment data:

{
  "assessmentData": {
    "experience": {
      "yearsInDataField": 2,
      "previousRoles": ["Data Analyst", "Business Analyst"],
      "currentTools": ["Excel", "Tableau"]
    },
    "skills": {
      "technical": ["SQL", "Python basics"],
      "design": ["Basic color theory"],
      "communication": ["Intermediate presentations"]
    },
    "goals": {
      "targetRole": "Senior Data Visualization Designer",
      "timeline": "18 months",
      "specialization": "Interactive Dashboard Design"
    },
    "sessionId": "sess_abc123def456",
    "timestamp": "2024-01-15T10:30:00Z"
  },
  "sessionId": "sess_abc123def456",
  "userId": 12345,
  "timestamp": "2024-01-15T10:30:00Z"
}

Example Response

{
  "roadmapId": "roadmap_xyz789",
  "userId": 12345,
  "generatedAt": "2024-01-15T10:30:45Z",
  "currentLevel": "Intermediate",
  "targetLevel": "Advanced",
  "estimatedDuration": "18 months",
  "phases": [
    {
      "phase": 1,
      "title": "Foundation Strengthening",
      "duration": "3 months",
      "skills": [
        "Advanced Python for Data Viz",
        "Design Principles",
        "Color Theory & Accessibility"
      ],
      "resources": [
        "Online courses",
        "Design books",
        "Practice projects"
      ]
    },
    {
      "phase": 2,
      "title": "Specialization Deep Dive",
      "duration": "6 months",
      "focus": "Interactive Dashboard Design",
      "tools": ["D3.js", "Power BI", "Tableau Advanced"],
      "milestones": [
        "Build 5 portfolio dashboards",
        "Master advanced interactivity",
        "Learn responsive design patterns"
      ]
    },
    {
      "phase": 3,
      "title": "Advanced Mastery",
      "duration": "9 months",
      "projects": [
        "Industry-level visualization system",
        "Custom component development",
        "Performance optimization"
      ]
    }
  ],
  "specializations": [
    {
      "name": "Interactive Dashboard Design",
      "relevance": 95,
      "prerequisites": ["Python", "JavaScript basics"]
    },
    {
      "name": "Scientific Visualization",
      "relevance": 78,
      "prerequisites": ["Mathematics", "Domain knowledge"]
    }
  ],
  "successMetrics": [
    "Portfolio projects completed",
    "Tools proficiency levels",
    "Industry certifications"
  ]
}

Endpoints

GET /

Health Check Endpoint

Verifies that the service is operational and ready to accept requests.

Method: GET
Path: /

Parameters: None

Response:

  • Status: 200 OK
  • Content-Type: application/json
  • Body: Health status confirmation

POST /api/dataviz/roadmap

Generate Personalized Roadmap

Creates a customized career development roadmap based on the user's current assessment data, experience level, skills inventory, and professional goals.

Method: POST
Path: /api/dataviz/roadmap

Parameters:

NameTypeRequiredDescription
assessmentDataAssessmentDataYesNested object containing experience, skills, goals, sessionId, and timestamp
assessmentData.experienceobjectYesDictionary containing years of experience, previous roles, and current tools
assessmentData.skillsobjectYesDictionary mapping skill categories to proficiency levels
assessmentData.goalsobjectYesDictionary defining target roles, timeline, and specialization preferences
assessmentData.sessionIdstringYesUnique session identifier for tracking the assessment
assessmentData.timestampstringYesISO 8601 timestamp of assessment completion
sessionIdstringYesUnique session identifier matching assessmentData.sessionId
userIdinteger (optional)NoOptional user identifier for authenticated requests
timestampstringYesISO 8601 timestamp of the roadmap request

Response:

  • Status: 200 OK
  • Content-Type: application/json
  • Body: Personalized roadmap with phases, specializations, and success metrics

Error Responses:

  • Status: 422 Unprocessable Entity
  • Description: Validation error in request body (missing required fields, invalid data types)

GET /api/dataviz/specializations

Retrieve Available Specializations

Fetches all available specialization paths within data visualization, including prerequisites, duration, and career progression details.

Method: GET
Path: /api/dataviz/specializations

Parameters: None

Response:

  • Status: 200 OK
  • Content-Type: application/json
  • Body: Array of specialization objects with details including name, description, prerequisites, duration, and relevance scores

GET /api/dataviz/learning-paths

Retrieve All Learning Paths

Provides comprehensive listing of structured learning paths, courses, resources, and skill progressions available within the platform.

Method: GET
Path: /api/dataviz/learning-paths

Parameters: None

Response:

  • Status: 200 OK
  • Content-Type: application/json
  • Body: Array of learning path objects with curriculum details, skill progressions, estimated duration, and resource recommendations

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

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…