Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-digital-marketing工具网络数字营销

Agent Skill

toolweb-digital-marketing 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,030

周安装

125

GitHub Stars

公开资料未说明

下载量

990
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-digital-marketing

简介

生成个性化数字营销学习路径的职业规划工具。

  • 适合营销人员技能提升和职业发展指导。
  • 提供技能评估、课程推荐和实战项目建议。
  • 需输入当前经验和学习目标定制方案。
  • 建议结合行业趋势调整学习重点。toolweb-digital-marketing 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Digital Marketing Specialist Roadmap
description
Professional career roadmap platform that generates personalized digital marketing learning paths based on user experience, skills, and goals.

Overview

The Digital Marketing Specialist Roadmap is a comprehensive career development platform designed to guide professionals through structured learning paths in digital marketing. Built for career changers, junior marketers, and experienced professionals seeking specialization, this API generates personalized roadmaps that align with individual experience levels, existing skill sets, and career objectives.

The platform provides intelligent assessment-driven recommendations, identifying skill gaps and creating actionable learning sequences. With access to multiple specialization paths and curated learning resources, users can navigate their digital marketing career with clarity and direction. This tool is ideal for career coaches, educational platforms, HR departments, and individuals seeking data-driven guidance in the rapidly evolving digital marketing landscape.

The API combines career assessment analytics with structured curriculum design, ensuring recommendations are tailored to each user's unique profile and professional context.

Usage

Generate Personalized Roadmap

Request:

{
  "assessmentData": {
    "experience": {
      "yearsInMarketing": 2,
      "previousRoles": ["Social Media Manager", "Content Writer"],
      "industryExperience": "E-commerce"
    },
    "skills": {
      "technical": ["Google Analytics", "Facebook Ads", "Canva"],
      "soft": ["Communication", "Project Management"],
      "proficiency": "intermediate"
    },
    "goals": {
      "targetRole": "Digital Marketing Manager",
      "timeframe": "12 months",
      "specialization": "Performance Marketing"
    },
    "sessionId": "sess_abc123def456",
    "timestamp": "2024-01-15T10:30:00Z"
  },
  "sessionId": "sess_abc123def456",
  "userId": 42,
  "timestamp": "2024-01-15T10:30:00Z"
}

Response:

{
  "roadmapId": "rm_xyz789",
  "userId": 42,
  "specialization": "Performance Marketing",
  "duration": "12 months",
  "phases": [
    {
      "phase": 1,
      "title": "Foundation Building",
      "duration": "2 months",
      "topics": [
        "Advanced Google Analytics 4",
        "Conversion Rate Optimization",
        "A/B Testing Fundamentals"
      ],
      "resources": [
        {
          "type": "course",
          "title": "Google Analytics Certification",
          "provider": "Google"
        }
      ]
    },
    {
      "phase": 2,
      "title": "Specialization Focus",
      "duration": "4 months",
      "topics": [
        "Multi-channel Campaign Strategy",
        "Budget Optimization",
        "Attribution Modeling"
      ],
      "resources": [
        {
          "type": "certification",
          "title": "Google Ads Certified Professional",
          "provider": "Google"
        }
      ]
    },
    {
      "phase": 3,
      "title": "Advanced Strategy",
      "duration": "6 months",
      "topics": [
        "Marketing Automation",
        "Team Leadership",
        "Emerging Channel Integration"
      ]
    }
  ],
  "skillGaps": [
    "Marketing Automation Platforms",
    "Advanced SQL for Analytics",
    "Team Management"
  ],
  "recommendedCertifications": [
    "Google Ads Certification",
    "HubSpot Marketing Automation",
    "Facebook Blueprint Certification"
  ],
  "createdAt": "2024-01-15T10:30:00Z"
}

Endpoints

GET /

Health Check

Returns service status and basic information.

Parameters: None

Response: JSON object confirming service availability.


POST /api/digital-marketing/roadmap

Generate Personalized Roadmap

Generates a customized digital marketing career roadmap based on user assessment data.

Parameters:

NameTypeRequiredDescription
assessmentDataAssessmentData objectYesUser assessment including experience, skills, and career goals
assessmentData.experienceobjectNoProfessional experience details (years, previous roles, industry background)
assessmentData.skillsobjectNoCurrent skill inventory (technical, soft skills, proficiency level)
assessmentData.goalsobjectNoCareer objectives (target role, timeframe, specialization preferences)
assessmentData.sessionIdstringYesUnique session identifier
assessmentData.timestampstringYesAssessment timestamp in ISO 8601 format
sessionIdstringYesRequest session identifier
userIdinteger or nullNoUnique user identifier
timestampstringYesRequest timestamp in ISO 8601 format

Response Shape:

{
  "roadmapId": "string",
  "userId": "integer",
  "specialization": "string",
  "duration": "string",
  "phases": [
    {
      "phase": "integer",
      "title": "string",
      "duration": "string",
      "topics": ["string"],
      "resources": [
        {
          "type": "string",
          "title": "string",
          "provider": "string"
        }
      ]
    }
  ],
  "skillGaps": ["string"],
  "recommendedCertifications": ["string"],
  "createdAt": "string"
}

Status Codes:

  • 200: Roadmap successfully generated
  • 422: Validation error in request body

GET /api/digital-marketing/specializations

Get Available Specializations

Retrieves all available digital marketing specialization paths.

Parameters: None

Response Shape:

{
  "specializations": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "focusAreas": ["string"],
      "averageDuration": "string",
      "demandLevel": "string"
    }
  ]
}

GET /api/digital-marketing/learning-paths

Get All Learning Paths

Retrieves complete list of available learning paths and curriculum resources.

Parameters: None

Response Shape:

{
  "learningPaths": [
    {
      "pathId": "string",
      "title": "string",
      "specialization": "string",
      "level": "string",
      "duration": "string",
      "modules": ["string"],
      "outcomes": ["string"]
    }
  ]
}

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/digital-marketing
  • API Docs: https://api.mkkpro.com:8176/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.86%
按下载量换算810

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills