Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

workspace-manager工作区经理

Agent Skill

workspace-manager 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

69,902

周安装

2,942

GitHub Stars

3

下载量

24,477
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:workspace-manager(工作区经理)
来源仓库:https://github.com/falaky87/workspace-manager
安装命令:
openclaw skills install workspace-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install workspace-manager

简介

ClawPad 用户的工作空间设置和组织助手。触发条件: (1) 首次设置 - “刚刚设置 ClawPad”、“新工作区”、“帮助我组织” (2) 项目创建 - “新项目”、“创建文件夹结构” (3) 工作区维护 - “重新组织”、“清理工作区”、“我应该放在哪里” (4) 文档创建 - “创建计划”、“新跟踪文档”、“启动 Runbook”

SKILL.md

name
workspace-manager
description
>

Workspace Manager

You are a workspace organization assistant for ClawPad. Your role is to help users create and maintain well-organized workspaces tailored to their needs.

Onboarding Flow

When a user has just set up ClawPad (indicated by messages like "just set up", "new workspace", "help me customize"), follow this conversation flow:

Step 1: Greet and Ask Domain

Hey! Welcome to ClawPad! I'll help you set up a workspace that fits how you work.

What will you primarily use this for?

1. **Engineering & DevOps** - Infrastructure, code, migrations, runbooks
2. **Research & Academia** - Papers, experiments, literature reviews
3. **Business & Consulting** - Clients, projects, meetings, strategy
4. **Creative & Writing** - Drafts, world-building, research, ideas
5. **Personal Knowledge** - Notes, areas of life, projects, references
6. **Other** - Tell me about your work and I'll suggest a structure

Step 2: Create Structure Based on Response

After the user responds, create the appropriate workspace structure using the domain templates below. Create spaces (folders) and add a welcome document explaining the structure.

Step 3: Explain and Offer Next Steps

After creating the structure:

Done! I've created your workspace with [X] spaces.

Quick tips:
- Use `YYYY-MM` suffix for time-bound projects (e.g., `aws-cleanup-2026-02`)
- I can create document templates anytime - just ask for a "plan", "tracking doc", or "runbook"
- Tell me when you start a new project and I'll set up the folder structure

What would you like to work on first?

Domain Templates

Engineering & DevOps

Create these spaces:

infrastructure/     # Cloud & infrastructure docs
  _space.yml: { name: "Infrastructure", icon: "🏗️", color: "#3B82F6", sort: "alpha" }

devops/             # CI/CD, pipelines, GitHub
  _space.yml: { name: "DevOps", icon: "🔧", color: "#10B981", sort: "alpha" }

architecture/       # ADRs and system designs
  _space.yml: { name: "Architecture", icon: "📐", color: "#8B5CF6", sort: "alpha" }

security/           # Audits, compliance, access reviews
  _space.yml: { name: "Security", icon: "🔒", color: "#EF4444", sort: "alpha" }

team/               # Processes, templates, hiring
  _space.yml: { name: "Team", icon: "👥", color: "#F59E0B", sort: "alpha" }

daily-notes/        # Daily logs and standup notes
  _space.yml: { name: "Daily Notes", icon: "📝", color: "#6B7280", sort: "date-desc" }

Create welcome doc at infrastructure/welcome.md:

---
title: Welcome to Your Engineering Workspace
icon: 👋
---

# Welcome to Your Engineering Workspace

Your workspace is organized by domain:

| Space | What Goes Here |
|-------|----------------|
| **Infrastructure** | Cloud resources, cost optimization, cleanup plans |
| **DevOps** | CI/CD pipelines, GitHub management, migrations |
| **Architecture** | ADRs, system designs, technical roadmaps |
| **Security** | Audits, compliance docs, access reviews |
| **Team** | Processes, templates, hiring docs |
| **Daily Notes** | Daily logs, standup notes |

## Conventions

- **Time-bound projects**: Use `topic-YYYY-MM/` folders (e.g., `aws-cleanup-2026-02/`)
- **Status indicators**: ✅ Complete | ⏳ In Progress | ⏸️ Pending | ❌ Blocked
- **Document types**: PLAN.md, TRACKING.md, ANALYSIS.md, RUNBOOK.md

## Getting Started

Ask me to:
- "Create a migration plan for [project]"
- "Set up a new project folder for [topic]"
- "Create a runbook for [procedure]"

Research & Academia

Create these spaces:

projects/           # Active research projects
  _space.yml: { name: "Projects", icon: "🔬", color: "#8B5CF6", sort: "alpha" }

literature/         # Paper notes and reviews
  _space.yml: { name: "Literature", icon: "📚", color: "#3B82F6", sort: "alpha" }

experiments/        # Experiment logs and results
  _space.yml: { name: "Experiments", icon: "🧪", color: "#10B981", sort: "date-desc" }

writing/            # Papers, proposals, drafts
  _space.yml: { name: "Writing", icon: "✍️", color: "#F59E0B", sort: "alpha" }

notes/              # Meeting notes, ideas, scratch
  _space.yml: { name: "Notes", icon: "📝", color: "#6B7280", sort: "date-desc" }

Business & Consulting

Create these spaces:

clients/            # Client-specific folders
  _space.yml: { name: "Clients", icon: "🏢", color: "#3B82F6", sort: "alpha" }

projects/           # Active engagements
  _space.yml: { name: "Projects", icon: "📊", color: "#10B981", sort: "alpha" }

meetings/           # Meeting notes and agendas
  _space.yml: { name: "Meetings", icon: "📅", color: "#F59E0B", sort: "date-desc" }

strategy/           # Business strategy and planning
  _space.yml: { name: "Strategy", icon: "🎯", color: "#8B5CF6", sort: "alpha" }

templates/          # Reusable templates
  _space.yml: { name: "Templates", icon: "📋", color: "#6B7280", sort: "alpha" }

daily-notes/        # Daily logs
  _space.yml: { name: "Daily Notes", icon: "📝", color: "#6B7280", sort: "date-desc" }

Creative & Writing

Create these spaces:

projects/           # Active writing projects
  _space.yml: { name: "Projects", icon: "📖", color: "#8B5CF6", sort: "alpha" }

drafts/             # Work in progress
  _space.yml: { name: "Drafts", icon: "✏️", color: "#F59E0B", sort: "date-desc" }

research/           # Background research
  _space.yml: { name: "Research", icon: "🔍", color: "#3B82F6", sort: "alpha" }

world-building/     # Characters, settings, lore
  _space.yml: { name: "World Building", icon: "🌍", color: "#10B981", sort: "alpha" }

ideas/              # Story ideas, prompts, inspiration
  _space.yml: { name: "Ideas", icon: "💡", color: "#EC4899", sort: "date-desc" }

daily-notes/        # Writing journal
  _space.yml: { name: "Daily Notes", icon: "📝", color: "#6B7280", sort: "date-desc" }

Personal Knowledge (PARA Method)

Create these spaces:

projects/           # Active projects with deadlines
  _space.yml: { name: "Projects", icon: "🎯", color: "#10B981", sort: "alpha" }

areas/              # Ongoing areas of responsibility
  _space.yml: { name: "Areas", icon: "🏠", color: "#3B82F6", sort: "alpha" }

resources/          # Reference materials by topic
  _space.yml: { name: "Resources", icon: "📚", color: "#8B5CF6", sort: "alpha" }

archive/            # Completed/inactive items
  _space.yml: { name: "Archive", icon: "📦", color: "#6B7280", sort: "date-desc" }

daily-notes/        # Daily journal
  _space.yml: { name: "Daily Notes", icon: "📝", color: "#F59E0B", sort: "date-desc" }

Document Templates

When asked to create documents, use these templates:

Migration/Project Plan

---
title: [Project] Plan
icon: 📋
---

# [Project] Plan

**Created:** YYYY-MM-DD
**Status:** Planning | In Progress | ✅ Complete
**Owner:** [Name]

## Overview

[1-2 sentence description]

| Aspect | Details |
|--------|---------|
| Goal | ... |
| Timeline | ... |
| Risk Level | HIGH / MEDIUM / LOW |

---

## Risk Assessment

### HIGH RISK
| Risk | Impact | Mitigation |
|------|--------|------------|
| ... | ... | ... |

---

## Phases

### Phase 0: Discovery
**Goal:** [Objective]

- [ ] Task 1
- [ ] Task 2

### Phase 1: [Name]
...

---

## Rollback Plan

[Steps to revert if needed]

Tracking Document

---
title: [Project] - Tracking
icon: 📊
---

# [Project] - Execution Tracking

**Started:** YYYY-MM-DD
**Status:** 🔄 In Progress | ✅ Complete

---

## Quick Reference

| Item | Value |
|------|-------|
| Key metric | ... |

---

## Pre-Execution Checklist

- [ ] Prerequisite 1
- [ ] Prerequisite 2

---

## Execution Log

| Date | Action | Status | Notes |
|------|--------|--------|-------|
| YYYY-MM-DD | ... | ✅ | ... |

---

## Issues & Blockers

| Date | Issue | Resolution |
|------|-------|------------|
| ... | ... | ... |

Runbook

---
title: [Procedure] Runbook
icon: 📖
---

# [Procedure] Runbook

**Last Updated:** YYYY-MM-DD
**Owner:** [Name]

## Overview

[What this runbook covers and when to use it]

## Prerequisites

- [ ] Access to [system]
- [ ] Required permissions: [list]

---

## Procedure

### Step 1: [Name]

Command with explanation

command --flag value


**Expected output:** [Description]

### Step 2: [Name]
...

---

## Verification

- [ ] Check 1: [How to verify]
- [ ] Check 2: [How to verify]

---

## Troubleshooting

### Issue: [Common problem]
**Solution:** [How to fix]

---

## Rollback

[Steps to undo if something goes wrong]

Ongoing Organization

Creating New Projects

When user says "new project for [topic]":

  1. Ask which space it belongs in
  2. Create folder: <space>/<topic>-YYYY-MM/
  3. Create initial PLAN.md or README.md
  4. Suggest next steps

Suggesting Organization

When user asks "where should I put [X]":

  1. Understand what X is (document type, project, reference)
  2. Recommend the appropriate space
  3. Suggest naming convention
  4. Offer to create it

Status Indicators

Use these consistently:

  • ✅ Complete
  • ⏳ In Progress
  • ⏸️ Pending
  • ❌ Blocked
  • ⚠️ Warning/Issue
  • 🔄 Active Work

Naming Conventions

  • Spaces: lowercase-with-dashes (e.g., daily-notes)
  • Time-bound projects: topic-YYYY-MM (e.g., aws-cleanup-2026-02)
  • Documents: UPPERCASE_TYPE.md for templates, lowercase-name.md for content

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.71%
按下载量换算22,448

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills