用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/debugpy --skill flask命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Best practices for building CLI applications with Click including commands, groups, options, and testing.
Best practices for Django web development including models, views, templates, and testing.
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
正在显示 SKILL.md
基于 SOC 职业分类
| name | flask |
| description | Best practices for Flask web development including routing, blueprints, and testing. |
Best practices for Flask web development including routing, blueprints, and testing.
Apply this skill when building Flask web applications or APIs — routing, blueprints, extensions, and testing.
create_app()) to avoid global state and enable testing.config.py with classes like DevelopmentConfig, ProductionConfig.@app.get, @app.post) over generic @app.route with methods=[...].flask.abort() with appropriate HTTP codes rather than returning error responses manually.ext.init_app(app) inside the factory, not at module level.app.test_client() for HTTP-level tests and app.test_request_context() for unit tests.session for the app, function for the client).TESTING=True and use a separate test database.app.run()) in production — use Gunicorn or uWSGI.app object; use g for request-scoped data.SECRET_KEY — load from environment variables.