Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计提醒

toolweb-frontend-developertoolweb 前端开发人员

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

2,712

周安装

113

GitHub Stars

公开资料未说明

下载量

904
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:toolweb-frontend-developer(toolweb 前端开发人员)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-frontend-developer
安装命令:
openclaw skills install toolweb-frontend-developer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install toolweb-frontend-developer

简介

ToolWeb-Frontend-Developer 为前端开发者生成个性化学习路径与发展策略。

  • 适用于 OpenClaw 中需要掌握 React、Vue、Tailwind 等技术的学习者。
  • 结合当前水平与职业目标推荐课程、项目与面试准备资源。
  • 通过 clawhub 安装后输入技能背景即可获得定制方案。
  • 建议边学边练,通过实际编码巩固知识点。

SKILL.md

name
Frontend Developer Roadmap
description
Professional Frontend Development Career Roadmap Platform that generates personalized learning paths and development strategies for aspiring and experienced frontend developers.

Overview

The Frontend Developer Roadmap API is a comprehensive career guidance platform designed to help developers navigate the complex landscape of frontend development. Whether you're just starting your journey or looking to advance your expertise, this API generates personalized roadmaps tailored to your experience level, current skills, and career goals.

Built for educators, career counselors, and self-directed learners, the platform intelligently assesses individual capabilities and creates actionable development paths. It provides curated learning resources, framework recommendations, and structured progression milestones that align with industry standards and modern web development practices.

The API is ideal for developer communities, educational platforms, coding bootcamps, and enterprise training programs seeking to deliver data-driven career development guidance at scale.

Usage

Generate a Personalized Roadmap

Create a POST request to generate a customized frontend development roadmap based on user assessment data:

Request:

{
  "sessionId": "session-uuid-12345",
  "userId": 42,
  "timestamp": "2024-01-15T14:30:00Z",
  "assessmentData": {
    "sessionId": "session-uuid-12345",
    "timestamp": "2024-01-15T14:30:00Z",
    "experience": {
      "yearsOfExperience": 2,
      "currentRole": "Junior Frontend Developer",
      "previousProjects": 5
    },
    "skills": {
      "html": "intermediate",
      "css": "intermediate",
      "javascript": "beginner-intermediate",
      "react": "beginner",
      "typescript": "none"
    },
    "goals": {
      "primary": "Master React and TypeScript",
      "timeframe": "6 months",
      "careerAspiration": "Senior Frontend Engineer"
    }
  }
}

Response:

{
  "roadmapId": "roadmap-98765",
  "userId": 42,
  "generatedAt": "2024-01-15T14:30:15Z",
  "phases": [
    {
      "phase": 1,
      "title": "Foundation Reinforcement",
      "duration": "4 weeks",
      "focus": ["Advanced CSS", "JavaScript ES6+", "DOM APIs"],
      "milestones": ["Complete 2 CSS projects", "Master async/await", "Build vanilla JS app"]
    },
    {
      "phase": 2,
      "title": "React Mastery",
      "duration": "8 weeks",
      "focus": ["React fundamentals", "Hooks", "State management"],
      "milestones": ["Build 3 React projects", "Implement Redux", "Learn React Router"]
    },
    {
      "phase": 3,
      "title": "TypeScript Integration",
      "duration": "6 weeks",
      "focus": ["TypeScript basics", "Advanced types", "React + TypeScript"],
      "milestones": ["Refactor projects to TypeScript", "Master generics", "Type-safe React apps"]
    }
  ],
  "recommendedResources": [
    {
      "title": "Advanced CSS: Grid & Flexbox",
      "type": "course",
      "platform": "Udemy",
      "difficulty": "intermediate"
    },
    {
      "title": "React Official Documentation",
      "type": "documentation",
      "platform": "react.dev",
      "difficulty": "intermediate"
    }
  ],
  "estimatedCompletionTime": "18 weeks"
}

Endpoints

GET /

Description: Root endpoint that returns API information and status.

Parameters: None

Response: JSON object with API metadata and service status.


GET /health

Description: Health check endpoint to verify API availability and service status.

Parameters: None

Response: JSON object confirming service health and operational status.


POST /api/frontend/roadmap

Description: Generate a personalized frontend developer roadmap based on user assessment data, current skills, and career goals.

Parameters:

ParameterTypeRequiredDescription
sessionIdstringYesUnique identifier for the user session
userIdinteger or nullNoUnique user identifier (optional for anonymous requests)
timestampstringYesISO 8601 formatted timestamp of the request
assessmentDataobjectYesNested object containing user assessment details (see below)

assessmentData Object:

ParameterTypeRequiredDescription
sessionIdstringYesSession identifier matching parent sessionId
timestampstringYesISO 8601 formatted timestamp of assessment
experienceobjectNoObject containing years of experience, current role, and project history
skillsobjectNoObject mapping skill names to proficiency levels (e.g., "html": "intermediate")
goalsobjectNoObject containing primary goals, timeframe, and career aspirations

Response: JSON object containing generated roadmap phases, recommended resources, learning milestones, and estimated completion time.

Error Response (422): Validation error if required fields are missing or malformed.


GET /api/frontend/frameworks

Description: Retrieve a comprehensive list of supported frontend frameworks and libraries with metadata.

Parameters: None

Response: JSON array containing framework names, versions, descriptions, learning resources, and popularity metrics.


GET /api/frontend/resources

Description: Retrieve curated learning resources including courses, tutorials, documentation, and community resources for frontend development.

Parameters: None

Response: JSON array of learning resources categorized by topic, difficulty level, resource type, and platform.

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/frontend-developer
  • API Docs: https://api.mkkpro.com:8084/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.31%
按下载量换算654

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills