在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用add-storage
星标5
分支0
更新时间2026年3月21日 18:20
Guided workflow for adding a new storage backend
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Guided workflow for adding a new storage backend
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run all quality checks in sequence (lint, mypy, bandit, tests)
Run full linting and type checking suite
Run project tests (unit or all)
Step-by-step guide for adding a new storage backend
Run all linting checks (ruff format, ruff check, codespell)
Review code changes for quality, security, and project conventions
| name | add-storage |
| description | Guided workflow for adding a new storage backend |
| user-invocable | true |
| argument-hint | <db> <driver> |
| agent | storage-architect |
| context | fork |
Add a new storage backend to jobify-db.
Arguments: $ARGUMENTS (e.g., "redis aioredis" or "sqlite aiosqlite")
src/jobify_db/_internal/{db}/{driver}/ with __init__.py, storage.py, queries.pysrc/jobify_db/_internal/{db}/queries.py if neededsrc/jobify_db/{db}/{driver}.py + empty src/jobify_db/{db}/__init__.pypyproject.toml [project.optional-dependencies]Storage protocol with @override decoratorstests/factories.py if neededtests/unit/test_{driver}_storage.pytests/integration/conftest.pystorage/storage_from_external params in tests/integration/test_storage.pyexamples/{driver}_example.py, examples/{driver}_external_pool_example.pyREADME.md, noxfile.py, CLAUDE.md, AGENTS.md, QWEN.mdjust lint && just mypy && uv run --active --frozen pytest tests/unit/ -q