AgentSkillsCN

load-interface-instructions

将接口仓库的说明文件加载至上下文中。适用于在开发接口 SDK 代码时,需要获取 TypeScript SDK 的编码规范、构建指南、项目结构、架构设计、路线图,以及相关策略背景信息时使用。

SKILL.md
--- frontmatter
name: load-interface-instructions
description: Load Interface repo instruction files into context. Use when working on Interface SDK code and needing coding conventions, build instructions, project structure, architecture, roadmap, or strategy context for the TypeScript SDK.

Load Interface Instructions

When to use

When working on code in the Phoenix-Agentic-Engine-Interface repo (TypeScript SDK + contracts) and you need repo-specific context. The agent should read the relevant instruction files to understand conventions, architecture, and project structure.

Available instruction files

All files live in Phoenix-Agentic-Engine-Interface/.github/instructions/:

FileContentWhen to load
interface-coding-conventions.instructions.mdTypeScript style, Zod, strict modeWhen writing or reviewing code
interface-build-and-test.instructions.mdnpm scripts, vitest, tscWhen building, testing, or fixing errors
interface-project-structure.instructions.mdDirectory layout, SDK organizationWhen navigating the codebase or adding new files
interface-private-architecture.instructions.mdSDK architecture, transport layerWhen making architectural decisions
interface-private-roadmap.instructions.mdMilestone plan, next tasksWhen planning work or checking status
interface-private-strategy.instructions.mdWhat belongs here vs BackendWhen deciding where code should live

Also available: interface-code-review.instructions.md — manual-only, load when reviewing PRs. Has excludeAgent guard to block the autonomous coding agent.

How to load

Read the files you need using read_file. Common patterns:

Starting coding work

code
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-coding-conventions.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-project-structure.instructions.md")

Build/test troubleshooting

code
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-build-and-test.instructions.md")

Architecture/planning

code
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-architecture.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-roadmap.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-strategy.instructions.md")

Load all (when full context is needed)

code
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-coding-conventions.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-build-and-test.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-project-structure.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-architecture.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-roadmap.instructions.md")
read_file("Phoenix-Agentic-Engine-Interface/.github/instructions/interface-private-strategy.instructions.md")