Missionclaw

v1.6.0

Integrates with MissionClaw for project management and AI agent orchestration. Use when the user wants to create projects, manage tasks via Kanban, assign wo...

0· 147·0 current·0 all-time
byimsuresh@sureshchitmil

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sureshchitmil/missionclaw.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Missionclaw" (sureshchitmil/missionclaw) from ClawHub.
Skill page: https://clawhub.ai/sureshchitmil/missionclaw
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install missionclaw

ClawHub CLI

Package manager switcher

npx clawhub@latest install missionclaw
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (project management + agent orchestration) align with the code and SKILL.md: the skill issues HTTP requests to a MissionClaw API (default http://localhost:3000) to create/list projects and query status. No unexpected external services or unrelated credentials are requested.
Instruction Scope
SKILL.md tells the user to run a local MissionClaw server (npm run dev or pm2) and suggests copying the skill into ~/.openclaw/skills/. The runtime instructions and code do not attempt to read arbitrary host files or exfiltrate data, but the doc's claim that the skill is “automatically installed” by OpenClaw is not reflected in the manifest (no install spec). The skill also assumes a local service is present — if that service is absent the skill will only produce connection errors.
Install Mechanism
There is no formal install spec (instruction-only), but the bundle includes index.js and package.json. Installation guidance in SKILL.md instructs copying files into the user's ~/.openclaw/skills directory or using a third-party 'clawhub' tool; these are manual operations that write into the user's home directory. No remote downloads or opaque installers are present.
Credentials
No sensitive environment variables or credentials are required. The code reads an optional MISSIONCLAW_URL env var (defaults to localhost). There are no requests for unrelated tokens, cloud credentials, or system config paths.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or global agent settings. It is user-invocable and allowed to be invoked autonomously (platform default), which is appropriate for this kind of integration.
Assessment
This skill communicates with a MissionClaw server on your machine (default http://localhost:3000). Before installing, verify you trust the MissionClaw service and the skill source. Note the SKILL.md asks you to copy files into ~/.openclaw/skills and to run a local server (npm/pm2) — those are manual actions that will place code on your machine. The skill does not request credentials or external network access beyond the local API, but you should: (1) run the MissionClaw server in a sandbox or test environment first, (2) inspect index.js and any server it talks to if you need stronger assurance, and (3) confirm provenance of this skill (the homepage is missing and source is unknown) before granting it persistent or widespread use.
index.js:1
Environment variable access combined with network send.
Confirmed safe by external scanners
Static analysis detected API credential-access patterns, but both VirusTotal and OpenClaw confirmed this skill is safe. These patterns are common in legitimate API integration skills.

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

ai-agentsvk979rcjsq6v2vf12hr007fpvfx83kezelatestvk979rcjsq6v2vf12hr007fpvfx83kezeopenclawvk979rcjsq6v2vf12hr007fpvfx83kezeproject-managementvk979rcjsq6v2vf12hr007fpvfx83keze
147downloads
0stars
7versions
Updated 1mo ago
v1.6.0
MIT-0

MissionClaw Skill

This skill integrates Velo with MissionClaw - a visual "Mission Control" for orchestrating AI agents.

Installation

MissionClaw skill is automatically installed with OpenClaw. If not present, install via:

# Using ClawHub
clawhub install missionclaw

# Or manually copy to skills folder
cp -r missionclaw ~/.openclaw/skills/

Quick Start

  1. Start MissionClaw:

    cd ~/.openclaw/workspace/missionclaw
    npm run dev
    

    Or use PM2 for production:

    pm2 start npm --name missionclaw -- run start
    
  2. Open in Browser:

    http://localhost:3000
    

Features

1. Dashboard

  • Overview of all projects, agents, and tasks
  • System status (Gateway, Ollama connections)
  • Quick actions

2. Kanban Board

  • 5 columns: Backlog → To Do → In Progress → Review → Done
  • Drag & drop task management
  • Assign tasks to agents
  • Set priority levels (Low, Medium, High, Urgent)

3. Agent Forge

  • Create and manage AI agents
  • 3 agent types: OpenClaw, Ollama (Local), Cloud API
  • 23 unique avatars to choose from
  • Edit SOUL.md and IDENTITY.md for each agent

4. Org Chart

  • Team-based hierarchy view
  • Real-time agent status
  • Agent details with personality

5. Scheduler

  • Cron-based task scheduling
  • One-click "Run Now"

API Endpoints

MethodEndpointDescription
GET/api/projectsList all projects
POST/api/projectsCreate new project (full fields)
GET/api/systemSystem status
GET/api/gatewayOpenClaw Gateway status
GET/api/ollamaOllama models

Create Project (Full Fields)

POST http://localhost:3000/api/projects

{
  "projectName": "The DigiCode Landing Page",
  "shortDescription": "Modern landing page for digital marketing agency",
  "tech": "Next.js, React, Tailwind CSS",
  "author": "Suresh",
  "fullPRD": "1. Hero section with agency name\n2. Services grid\n3. Portfolio showcase\n4. Contact form\n5. Footer with social links",
  "projectType": "web development",
  "priority": "high"
}

Example curl:

curl -X POST http://localhost:3000/api/projects \
  -H "Content-Type: application/json" \
  -d '{
    "projectName": "The DigiCode Landing Page",
    "shortDescription": "Modern landing page for digital marketing agency",
    "tech": "Next.js, React, Tailwind CSS",
    "author": "Suresh",
    "fullPRD": "1. Hero section\n2. Services grid\n3. Portfolio\n4. Contact form\n5. Footer",
    "projectType": "web development",
    "priority": "high"
  }'

Team Routing

Automatically route projects to the appropriate team:

KeywordsTeam
marketing, seo, ads, content, socialMarketing
web, frontend, backend, api, databaseDeveloper
design, logo, graphic, video, ui, uxCreative
sales, crm, leadsSales
support, help, bug, issueSupport
operations, automation, workflowOperations

Example Usage

User: "Create a new SEO project"

You: Use the MissionClaw UI to:

  1. Go to Projects → Create new project
  2. Go to Kanban → Add tasks
  3. Assign to SEO Specialist agent
  4. Track progress on dashboard

For more info: https://github.com/sureshchitmil/missionclaw

Comments

Loading comments...