npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ai-jue-adapter-copilot

v1.3.0

Published

AI-Jue adapter for GitHub Copilot

Readme

ai-jue-adapter-copilot

GitHub Copilot 适配器:将 ai-jue 配置转换为 Copilot 原生格式

NPM version License

English | 简体中文

属于 ai-jue Monorepo 的适配器模块。


功能概述

该适配器将 ai-jue 规范能力转换为 GitHub Copilot 原生配置格式。由于 Copilot 的配置系统相对简单,本适配器采用降级策略,将结构化能力转换为文本指令,确保所有配置都被显式处理而非静默忽略。

能力映射矩阵

开发者注意:下表中的"Copilot 原生特性"一列包含了指向该特性官方文档的 已验证 的 Markdown 链接。

| 优先级 | ai-jue 能力 | Copilot 原生特性 | 支持状态 | 用户配置说明 | 实现策略 | |:---|:---|:---|:---|:---|:---| | ⭐⭐⭐⭐⭐ | AGENTS.md | Repository Instructions | 🟢 Native | 生成 .github/copilot-instructions.md | 转换为指令文件头部 | | ⭐⭐⭐⭐⭐ | Rules | Path-specific Instructions | 🟡 Degraded | 降级为路径特定指令 | 作为 .github/instructions/*.instructions.md 输出 | | ⭐⭐⭐ | Commands | Prompt Files | 🟡 Degraded | 转换为 prompt files | 输出到 .github/prompts/ | | ⭐⭐⭐ | Skills | 无原生技能系统 | 🟡 Degraded | 写入指令文件 | 作为指令文档的一部分 | | ⭐⭐⭐ | MCP | MCP Configuration | 🟡 Degraded | 添加能力说明 | 在指令中提示用户手动配置 | | ⭐⭐⭐ | Hooks | 无原生钩子系统 | 🟡 Degraded | 添加工作流提示 | 在指令中提醒用户执行 | | ⭐⭐ | Agents | Agent Instructions | 🟡 Degraded | 作为角色指导 | 将代理定义转为 AGENTS.md | | ⭐⭐ | Configuration | Copilot Settings | 🟢 Native | .github/copilot-settings.json | 直接透传配置 |

详细实现说明

1. AGENTS.md(全局上下文)

  • 兼容性:Fully Compatible
  • 映射策略config.context.global 内容作为 copilot-instructions.md 的核心指令部分
  • 用户操作:无需额外操作,Copilot 会自动读取 .github/copilot-instructions.md
  • 技术细节:作为指令文件的第一部分内容输出

2. Rules(项目规则)

  • 兼容性:Partial (Degraded)
  • 映射策略
    • 支持 globsapplyTo frontmatter 字段
    • 输出为 .github/instructions/{name}.instructions.md
  • 限制
    • 无原生 globs/alwaysApply 支持,通过 frontmatter 模拟
  • 文件输出.github/instructions/{ruleName}.instructions.md
  • 格式示例
---
applyTo: "src/**/*.ts"
---

Use strict typing. Avoid `any`.

3. Commands(自定义命令)

  • 兼容性:Partial (Degraded)
  • 映射策略:转换为 .github/prompts/{name}.prompt.md 格式
  • 使用方式:Copilot 会在对话中识别命令关键词
  • 格式示例
---
applyTo: "**/*"
---

# Explain Code

Analyze this code and explain...

4. Skills(可复用技能)

  • 兼容性:Incompatible (Degraded)
  • 映射策略:转换为指令文档中的 "Available Skills" 章节
  • 用户影响:技能内容被转换为文本描述,Copilot 会根据上下文尝试应用

5. MCP(外部工具集成)

  • 兼容性:Incompatible (Degraded)
  • 映射策略:在指令文件中添加能力说明章节
  • 用户操作:用户需要手动在编辑器中配置 MCP 服务器
  • 降级说明
## Capability Notes

- MCP servers are defined in project config. Treat them as external tool context...

6. Hooks(生命周期钩子)

  • 兼容性:Incompatible (Degraded)
  • 映射策略:转换为 "Workflow Note" 章节
  • 用户影响:Copilot 会在相关场景提醒用户执行钩子,但不会自动触发
## Workflow Note

This project defines the following workflow hooks. Please remind the user to run them:

- **pre-commit**: `npm test`

7. Agents(子代理)

  • 兼容性:Partial (Degraded)
  • 映射策略
    • 生成 .github/instructions/{agent}.instructions.md 文件
    • 或作为角色指导写入主指令文档
  • 用户影响:用户需通过自然语言提示 Copilot 采用特定角色

8. Configuration(全局配置)

  • 兼容性:Fully Compatible
  • 映射策略tools.copilot 直接透传至 .github/copilot-settings.json
  • 用途:存储 Copilot 特定的编辑器设置

限制与降级策略

关键限制

  1. 无结构化配置:Copilot 不支持原生的 Rules、Commands、Skills 配置文件化
  2. 无 MCP 原生支持:需在编辑器设置中手动配置 MCP 服务器
  3. 无生命周期钩子:无法自动触发工作流脚本
  4. 无子代理系统:无法切换不同 AI 角色

降级处理汇总

| ai-jue 能力 | 降级方式 | 用户影响 | |:---|:---|:---| | Rules | .github/instructions/*.instructions.md | 通过 applyTo frontmatter 模拟路径特定规则 | | Commands | .github/prompts/*.prompt.md | 转换为 prompt files,通过自然语言触发 | | Skills | 写入 copilot-instructions.md | 内容转换为文本,依赖 Copilot 理解 | | MCP | 添加说明文字 | 需手动在编辑器中配置 | | Hooks | 添加提醒文字 | 需手动执行,无自动触发 | | Agents | .github/instructions/*.instructions.md | 需通过提示词引导 |

手动替代方案

对于不支持的能力,用户可手动:

  1. MCP 配置:在 VS Code/Cursor 设置中手动添加 MCP 服务器
  2. Hooks:使用 Git hooks 或编辑器任务替代
  3. Agents:在对话开始时明确指定角色

安装

npm install ai-jue-adapter-copilot

使用

ai.config.js 中配置:

module.exports = {
  preset: 'base',
  adapters: ['copilot']
};

然后运行:

npx jue apply --adapter copilot

验证

运行适配器测试:

npm test -- packages/ai-jue-adapter-copilot/test/index.test.ts

相关链接

License

MIT