uctm-init

仓库创建 2025年7月25日最近提交 1 天前SkillHot 收录 21 天前
▸ 精选理由

一键完成任务管理器所需项目结构与权限设置,方便上手管道。

▸ 风险提示

会修改 .claude 配置并要求授予 Bash 权限,需用户确认

这个 Skill 做什么

为当前项目初始化 uc-taskmanager 并配置工作目录与权限。

把当前项目准备成 uc-taskmanager 能跑的样子:会在仓库根建一个 works/ 目录,并在 .claude/settings.local.json 里帮你配置必要的 Bash 权限。通常在要执行 uc-taskmanager pipeline、首次初始化项目或遇到权限问题时用,会先询问你是否自动修改配置。这样能省去手动建目录和手动改配置的繁琐,让运行环境一步到位。

▸ 展开 SKILL.md 英文原文

Initialize uc-taskmanager for the current project. Creates works/ directory and configures Bash permissions in .claude/settings.local.json. Use when the user says "uctm init", "initialize uctm", "uctm 초기화", or "초기화".

开发编程初始化项目配置权限设置通用
3.2k
Stars
441
Forks
40
仓库内 Skill
+72
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/davepoon/buildwithclaude/main/plugins/agents-uc-taskmanager/skills/init/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/davepoon/buildwithclaude/main/plugins/agents-uc-taskmanager/skills/init/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# uc-taskmanager Init

Initialize the current project for uc-taskmanager pipeline execution.

## Steps

### 1. Create works/ directory

```
if works/ does not exist:
  create works/
  report: ✓ works/ directory created
else:
  report: - works/ already exists
```

### 2. Configure Bash Permissions

**Ask the user first:** "에이전트에 필요한 Bash 권한을 .claude/settings.local.json에 자동 설정할까요? (recommended) [Y/n]"

If the user approves (or says yes/Y/확인):

Read `.claude/settings.local.json` (create if not exists). Merge the following permissions into `permissions.allow` array — **skip any that already exist** (do not duplicate):

```json
[
  "Read(/**)",
  "Edit(/**)",
  "Write(/**)",
  "Read(**)",
  "Edit
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有