用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/susamn/aistuff --skill global-applications-guidelines命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | global-applications-guidelines |
| description | Core architectural and implementation guidelines for all application development. |
| version | 2.0.0 |
| kind | guidance |
| triggers | ["\"start a new project\", ","\"architecting an application\"","\"implementing a new feature\"","\"want to build a new app\"","\"lets work on a project\"","\"lets create a new app\""] |
| intent | system |
| guardrails | ["Do not bypass the type system","Do not suppress warnings","Do not introduce redundant logic"] |
| created_at | 2026-05-30T00:00:00.000Z |
| updated_at | 2026-07-29T00:00:00.000Z |
When creating a new application or modifying an existing project, adhere to the following universal rules regardless of platform, language, or framework:
Don't assume. Don't hide confusion. Surface tradeoffs.
Before implementing:
Minimum code that solves the problem. Nothing speculative.
Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.
Touch only what you must. Clean up only your own mess.
When editing existing code:
When your changes create orphans:
The test: Every changed line should trace directly to the user's request.
Define success criteria. Loop until verified.
Transform tasks into verifiable goals:
For multi-step tasks, state a brief plan:
1. [Step] → verify: [check]
2. [Step] → verify: [check]
3. [Step] → verify: [check]
Strong success criteria let you loop independently. Weak criteria ("make it work") require constant clarification.
These guidelines are working if: fewer unnecessary changes in diffs, fewer rewrites due to overcomplication, and clarifying questions come before implementation rather than after mistakes.
ARCHITECTURE.md to brainstorm ideas and outline the high-level design. Clarify any questions with the user before beginning implementation.CONTEXT.md: Explicitly defines the module's primary responsibility and scope.TODO.md: A live task list. Items must be ticked off only upon completion and verification.CONTEXT.md, a TODO.md, and a dedicated tests/ directory. Before making code changes, always read the module's CONTEXT.md, TODO.md, and the global DEPENDENCY.md.These files must exist at the root of the project:
ARCHITECTURE.md: Contains the project architecture, requirements, and high-level design.DEPENDENCY.md: Clearly defines inter-module dependencies. Rule: This file must be symlinked into every child module.PROJECT_STATE.md: Mandatory root file to track architectural decisions and progress. Rule: This file must be symlinked into every child module.
- **Phase**: [Current Phase]
- **Type**: [Fullstack/Frontend]
- **Stack**: [List of selected techs]
- **Modules**: [List of modules]
- **API Status**: [Draft/Finalized]
## Module Updates
[Each module adds its high-level status and major changes here, only relevant and single line containing the above information so that it can be easily read by other modules for their Reference]
npm audit, pip-audit, safety check) and report any active CVEs to the user immediately.TODO.md at a time.For any web-based project, an OpenAPI Schema MUST be used as the source of truth to bind backend and frontend.
openapi-schema-creator skill to design the schema.