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

dD 部署

Agent Skill

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

总安装

5,587

周安装

226

GitHub Stars

公开资料未说明

下载量

1,754
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install d

简介

d 技能提供多 OpenClaw 代理隔离部署方案。

  • 通过共享文件系统实现安全通信而不暴露网络端口。
  • 适用于团队协作或多任务并行运行环境搭建。d 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 依赖 Docker 容器化技术确保环境一致性。
  • 使用前请确认主机 Docker 版本与资源配额是否充足。

SKILL.md

Skill: Drawing an ASCII "D" Graph

Objective

To construct a visual representation of the letter "D" using standard text characters, focusing on creating a straight vertical spine and a curved outer edge.

Core Concept

Unlike the "V" shape, which relies on simple diagonal lines, the letter "D" requires a mix of straight vertical lines and a curved boundary. This is achieved by manipulating the spacing between the vertical "spine" of the letter and the "curve" on the right side, widening the gap in the middle and narrowing it at the top and bottom.

Step-by-Step Guide

  1. Define Dimensions: Determine the height of your letter. For a balanced look, the width usually extends to about half the height. Let's use a height of 7 lines for this example.
  2. Identify the Center: To create a symmetrical curve, you need to know the middle row. Calculate mid_height as height // 2.
  3. Iterate Through Rows: Loop through each line from top to bottom using a counter i (from 0 to height - 1).
  4. Calculate Spacing Logic: For each row, determine how many spaces should exist between the vertical bar | and the curved edge *.

- The Vertical Spine: This is constant. Every line starts with the character | (or # or I). - The Curve Logic: - Top and Bottom Rows: The gap is widest here to form the top and bottom of the D. - Middle Rows: The gap narrows as you approach the vertical center. - The Center Row: The gap is at its minimum (often just 1 space or 0 spaces depending on the font style). - Formula: A simple way to calculate the inner padding is to measure the distance of the current row i from the center mid_height. The closer to the center, the smaller the padding.

  1. Construct the Line:

- Print the vertical spine character. - Print the calculated number of spaces. - Print the curve character (e.g., *).

Visual Example (Height = 7)

Let's trace the logic for a "D" with a height of 7:

Row (i)Distance from CenterInner PaddingResulting Line
0 (Top)Far3 spaces`
1Medium2 spaces`
2Close1 space`
3 (Center)Zero (Center)1 space (Min)`
4Close1 space`
5Medium2 spaces`
6 (Bottom)Far3 spaces`

*(Note: In a more advanced rendering, the middle might be filled with ***** to create a solid block look, but the outline method above is the standard ASCII approach.)*

Python Code Snippet

Here is the logic implemented in Python to draw a clean, outlined "D":

def draw_ascii_d(height):
    # Ensure height is odd for a perfect center
    if height % 2 == 0:
        height += 1
       
    mid = height // 2
   
    print(f"--- ASCII D (Height: {height}) ---")
   
    for i in range(height):
        # 1. Draw the vertical spine
        line = "|"
       
        # 2. Calculate distance from the center row
        distance_from_center = abs(i - mid)
       
        # 3. Determine padding
        # We add +1 to ensure there is always at least one space
        # The padding increases as we move away from the center
        padding = distance_from_center + 1
       
        # 4. Add spaces and the curve character
        line += " " * padding
        line += "*"
       
        print(line)

# Example usage
draw_ascii_d(7)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.75%
按下载量换算1,644

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills