Token导航 LogoToken导航TokenDH.com
开发权限需确认clawhub未标认证来源可访问clear审计提醒

loooplooop 文档

Agent Skill

looop 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,787

周安装

280

GitHub Stars

公开资料未说明

下载量

2,218
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install looop

简介

自动化分解需求并执行详细任务列表的开发工具包。

  • 适合将文档或文本转化为可执行开发流程。
  • 通过 clawhub 安装,需确认项目路径和环境配置。
  • 可能触发文件读写和命令执行。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • looop 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
looop
description
Claude Automated Development Toolkit - Decompose requirements documents, single files, or inline text into detailed task lists and automatically execute in loops until project completion
requires
permissions
warning
This skill bypasses permission checks and automatically commits/pushes to git. Use with caution on trusted projects only.

Claude Automated Development Toolkit

You are an automated development assistant responsible for decomposing project requirements (from documents, single files, or inline text) into executable task lists and automatically executing each task in loops until the project is complete.

Parameters

ParameterRequired WhenDescription
--docs <DIR>Decomposing requirements directoryRequirements document directory path
--doc <FILE>Decomposing single doc fileSingle requirements document file path
--requirement <TEXT>Decomposing inline requirementDirect requirement text string
--src <DIR>Always requiredCode storage directory path

Note: --docs, --doc, and --requirement are mutually exclusive for decomposition. Use --requirement when you have a simple one-line requirement, --doc when you have a single requirements file, or --docs when you have multiple files in a directory.

File Storage Location

All task-related files are stored in <src_dir>/.looop/ directory:

FilePathDescription
tasks.json<src_dir>/.looop/tasks.jsonTask list data
progress.txt<src_dir>/.looop/progress.txtTask progress records
*.log<src_dir>/.looop/*.logTask execution logs

Log Files

Task execution logs are created per task, named by task ID, name and timestamp:

Filename PatternWhen Created
Task_#0_Decompose_YYYY-MM-DD_HH-MM-SS.logRequirements decomposition
Task_#N_TaskName_YYYY-MM-DD_HH-MM-SS.logEach task execution

Log content:

  • Task start/end timestamps (second precision)
  • Complete Claude CLI output (JSON stream)
  • Debug information

No log files for:

  • --status (status query)
  • --mark-manual / --list-manual / --resolve-manual (manual operations)

Execute Script

Important: Change to the skill directory first before running the script.

cd <skill_directory> && python run.py --src <DIR> [--docs <DIR> | --doc <FILE> | --requirement <TEXT>] [other parameters]

Core Workflow

Phase 1: Task Decomposition (requires docs/doc/requirement + src)

Directory mode: python run.py --docs <requirements_dir> --src <code_dir> --decompose

Single file mode: python run.py --doc <requirements_file> --src <code_dir> --decompose

Inline requirement mode: python run.py --requirement "<requirement text>" --src <code_dir> --decompose

The script will automatically:

  1. Create <src_dir>/.looop/ directory
  2. Read requirement source (documents or inline text)
  3. Call Claude to analyze and decompose into independent small tasks
  4. Set ID, name, description, priority, dependencies, task_type, estimated_files, acceptance_criteria for each task
  5. Save task list to <src_dir>/.looop/tasks.json

Phase 2: Task Execution (only requires src)

Command: python run.py --src <code_dir>

The script will first check if <src_dir>/.looop/tasks.json exists:

  • Not exists → Prompt to run --decompose first
  • Exists → Automatically execute tasks in loops

Execution process:

  1. Select next executable task from tasks.json
  2. Call Claude to execute task, code goes into src directory
  3. Record progress to progress.txt
  4. Update task status, execute git commit
  5. Continue next round until all tasks complete

Optional Parameters

ParameterShortDescription
--decompose-dDecompose requirements documents or text into task list
--status-sView task status statistics
--max-tasks <N>-m <N>Maximum N tasks to execute
--push-PExecute git push after completion
--mark-manual <ID>-M <ID>Mark task as needing manual intervention
--list-manual-LList tasks needing manual intervention
--resolve-manual <ID>-R <ID>Restore task to pending status

Usage Examples

# Decompose requirements from directory (requires docs + src)
python run.py --docs docs --src src --decompose

# Decompose from single document file
python run.py --doc docs/feature-x.md --src src --decompose

# Decompose from inline requirement text
python run.py --requirement "Implement a user login feature with form validation and JWT authentication" --src src --decompose

# Execute tasks (only requires src)
python run.py --src src

# View status
python run.py --src src --status

# Execute max 3 tasks and push
python run.py --src src --max-tasks 3 --push

tasks.json Data Structure

{
  "project": "Project name",
  "created_at": "YYYY-MM-DD",
  "docs_dir": "docs",
  "src_dir": "src",
  "requirements_docs": [
    "docs/xxx.md"
  ],
  "tasks": [
    {
      "id": 1,
      "name": "Task name (concise, imperative)",
      "description": "Detailed technical description including: what to build, files to create/modify, key implementation points",
      "priority": "high|medium|low",
      "dependencies": [],
      "task_type": "setup|core|feature|refactor|test|docs",
      "estimated_files": ["expected_file_path_1"],
      "acceptance_criteria": ["Specific verifiable criteria"],
      "status": "pending",
      "result": null,
      "issues": [],
      "completed_at": null
    }
  ]
}

Task Fields:

FieldDescription
idUnique task identifier
nameConcise imperative name (e.g. 'Create user model')
descriptionDetailed technical description with what/how/why/scope
priorityhigh (essential), medium (important), low (optional)
dependenciesArray of task IDs that must complete first
task_typesetup, core, feature, refactor, test, docs
estimated_filesExpected files to be created/modified
acceptance_criteriaSpecific verifiable completion criteria
statuspending, in_progress, completed, blocked, needs_manual

Note: When using --requirement, the structure will include "requirements_text": "..." and "docs_dir": null instead of "requirements_docs" and "docs_dir".

Task Status

StatusDescription
pendingPending execution
in_progressCurrently executing
completedCompleted
blockedBlocked
needs_manualNeeds manual intervention

Execution Flow

  1. Receive parameters - Parse src (required) and optional docs/doc/requirement
  2. Build command - Build python command based on parameters
  3. Execute script - Change to skill directory, then run run.py using Bash tool
  4. Output results - Display execution output and progress

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.08%
按下载量换算2,131

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills