Token导航 LogoToken导航TokenDH.com
待分类权限需确认github未标认证来源可访问许可证需确认审计未展示

ctxlayerctxlayer 命令行

Agent Skill

ctxlayer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

324

周安装

13

GitHub Stars

2

下载量

105
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anatoliykmetyuk/ctxlayer --skill ctxlayer

简介

ctxlayer 暂无公开的 SKILL.md 说明文档可供参考,功能描述基于仓库名称推测。

  • 可能涉及上下文分层管理或模块化知识组织机制的设计与实现。
  • 建议查阅原始 GitHub 仓库 README 获取准确用途与使用指南。
  • 通过 npx skills add 命令安装,但缺乏详细说明可能导致预期不符。
  • 使用前请核实维护状态与社区活跃度,避免依赖废弃项目。

SKILL.md

Context Layer

ctx CLI commands

The ctx CLI manages domains and tasks. Available commands:

  • ctx -- Show help and available commands
  • ctx new [name] -- Create a new task (prompts for domain if needed; prompts for task name if name is not specified)
  • ctx import -- Import a task from any domain as a symlink into .ctxlayer/ (sets active when config is empty)
  • ctx status -- Show the active domain and task, plus git tracking info
  • ctx set -- Set active domain and task (interactive)
  • ctx git [args...] -- Run git in the active task directory
  • ctx drop task [name] -- Remove a task symlink from .ctxlayer/. Prompts for task if name is not specified
  • ctx drop domain [name] -- Remove a domain directory from .ctxlayer/. Prompts for domain if name is not specified
  • ctx delete task -- Permanently delete a task from the context layer. Prompts for task
  • ctx delete domain -- Permanently delete a domain from the context layer. Prompts for domain

Configuration lives at .ctxlayer/config.yaml in the current working directory with two fields:

active-domain: <domain-name>
active-task: <task-name>   # may be omitted if no task is active

Domains are stored globally at ~/.agents/ctxlayer/domains/. Each domain contains task folders. Each task folder contains the context for that task. A task folder may have an INDEX.md file, and its subdirectories may also have INDEX.md files. Check for those files and use them to understand the structure of the context of the task.

Which task to access: By default, use the active domain and task from config.yaml (run ctx status to obtain them). When the user explicitly specifies a domain and task in the prompt (e.g. "in the context layer, domain A, task B, use documents 1 and 2"), use that instead. Access the active task's folder via the filesystem path ~/.agents/ctxlayer/domains/<domain>/<task>/. All operations below apply to this resolved task. This folder is referred to as the resolved task folder or task root.

Indexing

Index of the context layer refers to the INDEX.md files present in the task folder and its subdirectories. Expect the task folder to have an INDEX.md file that contains a summary of what is contained in the folder. An INDEX.md file will start with a short description of the task and the context so the task purpose and how to use this context are clear. It will also contain a table with the following columns:

  • ID - The ordinal ID of the item in the index.
  • Filename - The name of the file or folder being described.
  • Description - A short description of the item. Use it to understand what is inside and when it is useful to access it.

Expect this structure to be recursive, so that a subdirectory may also have an INDEX.md file that contains a summary of what is contained in the subdirectory. Also expect that in some cases, recursive INDEX.md files may not be needed and the top-level INDEX.md file will describe the contents of the subdirectories as well.

Use context layer index for progressive discovery of context when working on tasks, and to resolve information referenced by the user by the context layer ID.

Indexing Conventions

All files of the context layer are numbered and may be referred by a unique numeric ID. This is the same ID that is used in the INDEX.md file. As a rule, the ID is also written in the filename as a prefix, e.g. 01-initial-research.md, 02-feature-implementation.md, 03-architecture-diagram.md. It is also written in folders as a prefix, e.g. 01-initial-research/, 02-feature-implementation/, 03-architecture-diagram/. As a convention, the names of the files and folders follow kebab-case, prefixed with the ID. You MUST follow these conventions when creating new files or folders.

The user may refer to the files and folders by their ID, e.g. "folder 01-02-03" would mean, resolve folder with id 01, its subfolder with id 02, and use the folder 03 for the operation.

When creating a new file or folder, use the next available ID to prefix the filename or folder name. You can find the next available ID by listing all the files and folders in the context layer, determining the greatest ID, and incrementing it by 1. Also always update the corresponding INDEX.md file to include the new item.

These indexing rules may be overriden by the INDEX.md file itself at a task or subdirectory level. Look for sections Indexing Conventions and Indexing Rules in the INDEX.md file to understand how to override the conventions at the level of the folder where the INDEX.md file is located.

Updating the Index

Index should always stay up-to-date. When making any changes - updates, deletions or additions of new files or information - to the context layer, update corresponding INDEX.md files to reflect the changes.

The user may also explicitly ask to update the index, e.g. "update the index of the context layer". In that case: scan the entire context layer file tree, read every INDEX.md found, compare against the actual file tree, identify mismatches (e.g. files missing from the index or present in the index but not on disk, or renames or ID changes), and update the index to match.

If asked to build the index from scratch, scan the filesystem tree and write INDEX.md files anew from disk contents; do not reconcile against existing index entries as the source of truth.

If asked to rebuild the IDs of a directory, subdirectory, or entire context layer task, you must first identify any references from existing markdown files to other context layer files or folders by their IDs. You must then reassign IDs to files and folders to remove gaps in numbering, while updating the existing references to the new IDs. Preserve the ordering of file IDs during this operation.

Common Operations

Documentation operations

Documentation operations are read and write operations requested by the user with the intent of documenting something or accessing previously documented information. By default, documentation operations are performed on the resolved task's docs/ folder. However the user may explicitly specify a different folder to perform the operation on, e.g. "in the context layer, log your findings to the folder 02" or "in the context layer, document the architecture diagram in folder 03 in the data folder".

Documentation follows the same indexing and naming conventions as the other context layer files and folders, described above.

Git Repository Operations

When the user asks to "add a repository to the context layer" or "clone a repo as context layer context", do NOT run a regular git clone. Instead, from the task root, run git submodule add <repo-url> <subdir>/<ID>-<repo-name>, where <subdir> is the subdirectory where to clone the repo (use Context Layer Index to discover where repositories are cloned, or use a subdirectory explicitly specified by the user) and <ID> is the ID assigned to the repository in the Context Layer Index according to the indexing conventions described above.

This keeps the domain repo lightweight and version-controlled via submodule references.

Git Operations

When the user requests any git operations (e.g., status, add, commit, push, pull) on the context layer or task context itself, perform them from the task root. For example:

"Commit all the changes to the context layer"

Is understood as a request to summarize the changes in the resolved task, compose a descriptive commit message, and commit the changes via git add -A. && git commit -a -m "<descriptive commit message>" from the task root.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

32.52%
按下载量换算34

Claude

31.47%
按下载量换算33

Cursor

19.14%
按下载量换算20

Gemini CLI

9.96%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

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

安装前确认

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

来源信息

继续浏览同类 Skills