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

cjpkgcjpkg 搜索

Agent Skill

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

总安装

2,771

周安装

111

GitHub Stars

公开资料未说明

下载量

897
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install cjpkg

简介

cjpkg 帮助用户发现仓颉编程语言相关软件包与实现方案。

  • 适用于 OpenClaw 中开发工具选型与技术调研场景。
  • 通过 clawhub 安装,支持自然语言查询与包功能描述匹配。
  • 使用前应核实包维护状态与社区活跃度。cjpkg 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 推荐优先选择有持续更新与文档完善的包。

SKILL.md

name
cjpkg
description
Helps users discover, when they ask questions like "how do I do X", "find a packages for Cangjie", "is there a X package for Cangjie...", or express interest in extending capabilities. This package or third party component should be used when the user is looking for functionality that might exist as an cangjie package.

Cangjie Repository

This skill helps you publish, discover, install and include package, or cangjie third party components from the cangjie central repository ecosystem.

When to Use This Skill

Use this skill when the user:

  • Asks "how do I do X" where X might be a common task with init/create a cangjie Third Party Components, develope a cangjie package
  • Asks "how do I do X" where X might be a common task with Cangjie Central Repository, or Cangjie Third Party Components
  • Says "find a X packages for Cangjie" or "is there a X package for Cangjie" where X might be a common task
  • Asks "can you do X" where X is a specialized package of Cangjie Central Repository, or Cangjie Third Party Components
  • Expresses interest in Cangjie Central Repository, or Cangjie Third Party Components, or cangjie package
  • Wants to search for package, components, or demos of cangjie
  • Mentions they wish they had help with a specific domain of cangjie coding (design, testing, deployment, etc.)

What is the Cangjie Central Repository?

The Cangjie Central Repository is the package manager for the Cangjie language ecosystem. Packages are modular components that can be compiled, distributed in a cangjie project. The Cangjie package is also called cangjie third party library, or cangjie third party component.And cjpm is client tool for The Cangjie Central Repository.

Key commands:

  • cjpm bundle [option] - Make distributable tarball of current cangjie module
  • cjpm publish [option] - Publish a package to cangjie central repository
  • python3 ./scripts/main.py -s [package_name] - Search package in cangjie central repository
  • python3 ./scripts/main.py -d [organition::package_name:version] - Download package in cangjie central repository
  • cjpm install [option] [name-version] - Install a specific plugin version of cjpm
  • cjpm install pkg-latest - Install the latest version of cangjie central repository client

Browse Package at: https://pkg.cangjie-lang.cn/index

How to Help Users Find, Use and Develop Cangjie Package

Step 1: Understand What They Need

When a user asks for help with something, identify:

  1. The specific functionality which is implemented by cangjie (e.g., cangjie json format, cangjie json encode, cangjie stdx, cangjie net, cangjie cropto)
  2. The platform (e.g., OHOS, OpenHarmony, Linux, Cross-platform, Android, iOS, macOS, Windows)
  3. Whether this is a common enough functionality that a package/components likely exists

Step 2: Search for cangjie packages/components

while cangjie sdk is not used for search cangjie packages/components.

Run the find command with a relevant query:

python3 ./scripts/main.py -s [package_name]

For example:

  • User asks "can you help me with cangjie json encoding?" → python3 ./scripts/main.py -s json
  • User asks "I need to create a changelog" → python3 ./scripts/main.py -s changelog
  • User asks "I need to create a http router" → python3 ./scripts/main.py -s http_router

The command will return results like:

Page 1 results (1 record(s) total, 1 page(s) total):

# | Name        | Latest version | Organization | Publisher | Downloads | Description
--+-------------+----------------+--------------+-----------+-----------+--------------
0 | http_router | 0.1.1          | opencj       | changeden | 4         | restful路径解析工具

Step 3: Download packages/components

When you find relevant packages/components, ask the users if they want to download the packages/components, so the users can view the source code of packages/components:

  1. If the users said no, just bypass this step
  1. If the users said yes, you get organization, package_name, package_version, the run this command to download packages/components:

python3 ./scripts/main.py -d organization::package_name:package_version

Example response:

Saved to: /Users/hxm/Downloads/http_router-0.1.1.pkg

now, you have to ask users if they want to config this package/component in their cangjie project.

Step 4: confirm the users project path

Ask the users to tell you the project path they want to config, you can ask like this:

Which project do you want to config, i will recommend ~/workspace/cj_pro

The users may tell you the project path like '/Users/xxx/workspace/pro_name', so you get cangjie_project_path.

Step 5: Make sure cangjie sdk is installed

  1. Run the env command with a grep

env | grep CANGJIE_HOME

  1. if this command returns nothing, there is no cangjie sdk environment. So,:

* ask the users to install cangjie sdk from this url : https://cangjie-lang.cn/download, and ask the users to tell you the install path of cangjie sdk path, like '/Users/xxx/cangjie/', so the CJ_SDK_PATH=/Users/xxx/cangjie/ * or, after you get confirm of the users, you can also help the users to download and extract cangjie sdk from this url: https://cangjie-lang.cn/download, and you get the extract path as CJ_SDK_PATH

  1. if you get CJ_SDK_PATH, then run this command and source the .zshrc, before you run , you replace SDK_PATH with what you get from the last step

* If you run on macOS/Linux → echo "source SDK_PATH/envsetup.sh" >> .zshrc & source .zshrc * If you run on Windows(CMD)→ setx PATH=%PATH%;SDK_PATH\envsetup.bat * If you run on Windows(POWERSHELL)→ $env:Path += ";SDK_PATH\envsetup.bat"

  1. if this command returns like 'CANGJIE_HOME=...', then the cangjie sdk environment is ready.

Step 6: Init project and import the cangjie package into project

Now you get three key message :

  • cangjie sdk installed
  • the user's cangjie_project_path
  • Package's organization::package_name:package_version

you can init project, you must replace cangjie_project_path with the place you get from users in step 4 before you run this command:

cjpm init --path cangjie_project_path

then, config the cjpm.toml file in cangjie_project_path, run this command:

  • If the organization is 'default'→ python3 ./scripts/main.py -e cangjie_project_path/cjpm.toml dependencies.package_name package_version
  • if the organization is not 'default' → python3 ./scripts/main.py -e cangjie_project_path/cjpm.toml dependencies.organization::package_name package_version

Step 7: Build the project

Now you can build the user's project, you can run this command:

cd cangjie_project_path & cjpm build

Then, you returns the compile results to the users, and tell the users how to run compile results.

Step 8: Init project and develop a cangjie package

You can ask the users to confirm if they want to develop a cangjie package and publish to The Cangjie Central Repository ,

If the users confirmed, you can init project, you must replace cangjie_project_path with the place you get from users in step 4 before you run this command, you must notice you have to use --type=dynamic when the users want to develop a cangjie package:

cjpm init --path cangjie_project_path --type=dynamic

then you can help the users to coding in this project, you can give the users many tips like this:

what kind of package or components do you want, we can develop together with Cangjie language.

Then, you can clone this repo and learn Cangjie language with a grep tool: https://gitcode.com/Cangjie/cangjie_docs/blob/main/docs/dev-guide/summary_cjnative_EN.md

anyway, you can build the new project like Step 7

Common Skill Categories

When searching, consider these common categories:

CategoryExample Queries
static languageCangjie, Cangjie SDK
stdxCangjie_stdx, stdx, stdx_xxx, stdx_yyy, stdx_zzz
jsonserialization, json_encode
Documentationdocs, readme, changelog, api-docs
Code Qualityreview, lint, refactor, best-practices
Designui, ux, design-system, accessibility
Productivityworkflow, automation, git

Tips for Effective Searches

  1. Use specific keywords: "json encoding" is better than just "encoding"
  2. Try alternative terms: If "deploy" doesn't work, try "deployment" or "ci-cd"
  3. Check popular sources: Many skills come from vercel-labs/agent-skills or ComposioHQ/awesome-claude-skills

When No Skills Are Found

If no relevant skills exist:

  1. Acknowledge that no existing skill was found
  2. Offer to help with the task directly using your general capabilities
  3. Suggest the user could create their own skill with npx skills init

Example:

I searched for skills related to "xyz" but didn't find any matches.
I can still help you with this task directly! Would you like me to proceed?

If this is something you do often, you could create your own skill:
npx skills init my-xyz-skill

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.88%
按下载量换算690

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills