在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用coding-standards
星标5
分支2
更新时间2026年4月1日 08:48
Project coding standards and patterns
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Project coding standards and patterns
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Git commit conventions and workflow
Guide for breaking features into atomic, implementable tasks
TDD workflow and testing patterns
Author safe RalphX Agent Workflow scripts that orchestrate durable delegated agents through the high-level workflow API.
Guide for analyzing git diff and refining QA test plans
Guide for generating QA test steps with agent-browser commands
| name | coding-standards |
| description | Project coding standards and patterns |
| disable-model-invocation | true |
| user-invocable | false |
strict mode (all strict flags enabled)const over letany type - use unknown if type is truly unknown@/ aliastype imports for type-only importsuse prefixinterface Props {
value: string;
onChange: (value: string) => void;
}
export function MyComponent({ value, onChange }: Props) {
return <div>{value}</div>;
}
cargo clippy for linting///thiserror for custom errorsserde for serializationComponent.test.tsxtests/ directorytest_should_reject_invalid_input#[test] + mockallSee: .claude/rules/code-quality-standards.md (single source of truth)
Plugin-specific limits:
| File Type | Max Lines |
|---|---|
| Component | 100 |
| Hook | 100 |
| Store | 150 |
| Skill | 150 |
| Agent | 100 |