Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
Dépôt GitHub

GHOST

GHOST contient 35 skills collectées depuis mrtolkien, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
35
Stars
5
mis à jour
2026-04-07
Forks
0
Couverture métier
8 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

db-migrations
Architectes de bases de données

SQLite migration rules for the Ghost codebase. MUST READ before writing or modifying any file in migrations/. Covers: table recreation patterns, column ordering, CHECK constraint changes, NOT NULL safety, and the validation checklist. A faulty migration that ships breaks the production daemon on startup with no recovery path short of manual DB surgery — these rules are non-negotiable.

2026-04-07
knowledge-navigator
Développeurs de logiciels

Read when you need to browse, traverse, or query the knowledge system beyond basic knowledge_search — graph traversal, tag exploration, orphan detection, reference browsing, topic listing, or direct SQL access.

2026-04-07
reference-import
Développeurs de logiciels

Import and update external content in the knowledge base — git repos, web crawls, documents (PDF, DOCX), and books (EPUB). Use when the OPERATOR wants persistent, searchable reference material from a git repository, website, document, or book, or when existing references may be stale and need refreshing.

2026-04-07
lua-scripting
Développeurs de logiciels

Ghost's Lua scripting layer internals. MUST READ before modifying anything in src/scripting/, prompts/stdlib/, prompts/agents/*/agent.lua, or agent hook logic. Covers: ScriptHost VM lifecycle, sandbox, host globals, ctx bindings, nudge library, template module, custom tools, type stubs, and the PreTurnState contract.

2026-03-31
system-management
Administrateurs de réseaux et de systèmes informatiques

Use when reading or changing GHOST configuration (providers, models, timing, compaction, services, any config.toml key), adding or switching LLM providers, answering questions about GHOST's own features or capabilities, a CLI tool is missing or "not found", services need starting/stopping/debugging, updating GHOST to a newer version, managing the Nix shell environment, or troubleshooting GHOST setup.

2026-03-28
fix-feedback
Développeurs de logiciels

Triage and fix issues reported via Ghost's /feedback command. MUST READ when the user points you to a feedback folder, mentions a feedback report, or asks you to investigate a bug that happened during a GHOST session. Covers: retrieving feedback from remote servers, reading transcripts and debug request dumps, root-cause categorization, and the fix workflow.

2026-03-26
browser-use
Développeurs de logiciels

Read before first use of the browser tool in a session. Covers browser selection workflow (list → pick → connect), when to use headless vs operator browser, how to guide the OPERATOR to expose their browser with `ghost browsers serve`, tab management, element refs, and web_fetch session sharing.

2026-03-26
tracing
Développeurs de logiciels

Tracing, observability, and instrumentation conventions for the Ghost codebase. MUST READ before adding or modifying: tracing spans, #[tracing::instrument] attributes, tracing::info_span!() calls, OTel semantic convention fields (gen_ai.*), span hierarchy, or any observability-related code. Failure to follow these conventions produces inconsistent telemetry.

2026-03-25
skill-creator
Développeurs de logiciels

Create new skills, modify and improve existing skills, and measure skill performance. Use when the OPERATOR wants to create a skill from scratch, edit or optimize an existing skill, run evals to test a skill, or benchmark skill performance with variance analysis.

2026-03-24
deep-research
Scientifiques des données

Read when the OPERATOR asks a question that will require web research across multiple sources — recommendations, comparisons, evaluations, multi-factor decisions, "what should I buy/use", or any question where you'd need to read several web pages. This skill decides whether to spawn a background research agent (to protect your context from heavy fetching) or handle it yourself. Do NOT read for simple factual lookups or questions fully answered by your knowledge base.

2026-03-23
subagent-development
Développeurs de logiciels

Use when executing implementation plans with independent tasks in the current session. Dispatch a fresh subagent per task, with two-stage review after each — spec compliance review first, then code quality review. Keeps context clean and quality high.

2026-03-23
note-writer
Développeurs de logiciels

Read before creating or updating knowledge notes with note_write. Covers mandatory conventions — truth principle, archetypes, titles, typed linking, tags, trust scores, evidence bar, consolidation, and archival. Skip for diary entries and simple file writes.

2026-03-17
agent-creator
Développeurs de logiciels

Create spawnable Lua agents coupled with skills. Use when you need to create an autonomous agent that achieves a specific task. Also use when the OPERATOR wants a reusable background agent.

2026-03-17
writing-plans
Développeurs de logiciels

Use when you have a spec or requirements for a multi-step task, before touching code. Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste.

2026-03-17
coding
Développeurs de logiciels

Manage coding sessions. Use when the OPERATOR asks to work on code, hack on a repo, implement features, fix bugs, or do any development work in a codebase.

2026-03-16
image-generation
Artistes en effets spéciaux et animateurs

Generate or edit images with Nano Banana 2 (Gemini 3.1 Flash Image). Use for any image create/modify requests. Supports text-to-image + image-to-image; 1K/2K/4K resolutions.

2026-03-16
project-manager
Spécialistes en gestion de projets

Create, manage, and organize projects — persistent cross-session task containers for long-horizon work. Also read when the OPERATOR describes an ambition or goal that will span multiple sessions ("I want to build X", "I want to learn Y from scratch", "help me create Z") — offer to create a project to track progress. Covers CLI commands, file structure, workflow, and when to create or archive.

2026-03-16
scripting
Développeurs de logiciels

Use when the OPERATOR asks a question that needs code to answer — data processing, CSV/JSON parsing, API calls, domain lookups, web scraping, calculations, or anything beyond a single coreutils command. MUST READ before writing any Python or running python/python3 commands.

2026-03-16
parallel-agents
Développeurs de logiciels

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies.

2026-03-16
requesting-review
Analystes en assurance qualité des logiciels et testeurs

Use when completing tasks, implementing major features, or before merging to verify work meets requirements

2026-03-16
e2e-testing
Analystes en assurance qualité des logiciels et testeurs

Step-based stepwise test design, implementation, and iteration for Ghost. Use this skill when creating, rewriting, reviewing, or debugging stepwise tests that chain fixtures across steps, use LiveTestEnv snapshots, run sequentially, or compare behavior across model aliases. Also covers daemon-boot e2e tests. Covers: tests/stepwise harness layout, hard-fail predecessor fixtures, transcript/metrics artifacts, interactive scripts/e2e tooling, and the iteration workflow when tests fail.

2026-03-10
sending-attachments
Développeurs de logiciels

Use when you need to send an image, generated file, CSV, or any attachment to the OPERATOR.

2026-03-09
brainstorming
Développeurs de logiciels

You MUST use this before any creative work — creating features, building components, adding functionality, or modifying behavior. Explores the OPERATOR's intent, requirements, and design before implementation.

2026-03-09
executing-plans
Développeurs de logiciels

Use when you have a written implementation plan to execute in a separate session with review checkpoints. Load plan, review critically, execute tasks in batches, and report for review between batches.

2026-03-09
finishing-branch
Développeurs de logiciels

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

2026-03-09
git-worktrees
Développeurs de logiciels

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

2026-03-09
receiving-review
Développeurs de logiciels

Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation

2026-03-09
systematic-debugging
Développeurs de logiciels

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

2026-03-09
tdd
Analystes en assurance qualité des logiciels et testeurs

Use when implementing any feature or bugfix, before writing implementation code. Write the test first. Watch it fail. Write minimal code to pass.

2026-03-09
verification
Analystes en assurance qualité des logiciels et testeurs

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs. Requires running verification commands and confirming output before making any success claims. Evidence before assertions, always.

2026-03-09
writing-skills
Développeurs de logiciels

Use when creating new skills, editing existing skills, or verifying skills work before deployment

2026-03-09
docs
Développeurs web

Documentation conventions for Ghost's user-facing docs site (Astro Starlight). MUST READ before creating or updating any page under docs/, modifying CLI help text, or changing user-facing behavior that needs documentation. Covers which doc file to update for each change type, build verification, formatting, and terminology rules.

2026-03-05
testing
Analystes en assurance qualité des logiciels et testeurs

Test conventions, harness API, and readability rules for the Ghost codebase. MUST READ before writing or modifying any test — unit tests, integration tests, or live tests. Covers: test helper functions (test_config, test_workspace, test_database), MockProvider, LiveTestEnv, live test isolation rules, and the non-negotiable readability requirements. For step-based end-to-end tests, also read the `e2e-testing` skill. Failure to read this will produce duplicated boilerplate and broken test isolation.

2026-03-05
skill-management
Développeurs de logiciels

Self-documentation for Claude Code. MUST READ after implementing complex features, making structural changes, or learning non-obvious patterns that would be useful in future sessions. Covers: when to create or update .agents/skills/ files, what belongs in a skill vs CLAUDE.md vs auto-memory, the skill file format, and the maintenance checklist to run before finishing work.

2026-03-02
uv-scripts
Développeurs de logiciels

Writing and running Python code with uv inline scripts. MUST READ every time you need to run ANY Python code, process JSON/data, execute multi-line shell logic, or feel tempted to use python3 -c, jq, awk, or long bash pipes. ALWAYS search existing scripts first (ls scripts/) and extend one before writing new. Covers: inline dependency declarations, script placement, discoverability.

2026-03-01