Quickly create a chore/maintenance task. Usage: /chore <title> [description]
Scanned 2/12/2026
Install via CLI
openskills install GobbyAI/gobby---
name: chore
description: "Quickly create a chore/maintenance task. Usage: /chore <title> [description]"
category: core
---
# /chore - Create Chore Task
Create a maintenance or housekeeping task with the provided title and optional description. For tasks that keep the codebase healthy but aren't features or bugs.
## Usage
```
/chore <title>
/chore <title> - <description>
```
## Examples
```
/chore Update dependencies
/chore Clean up CI pipeline - Remove deprecated jobs and consolidate test stages
/chore Add missing type hints to utils module
/chore Rotate API keys
```
## Tool Schema Reminder
**First time calling a tool this session?** Use `get_tool_schema(server_name, tool_name)` before `call_tool` to get correct parameters. Schemas are cached per session—no need to refetch.
## Action
Create a chore task by invoking `call_tool()` with the following parameters:
- `title`: The chore title from user input
- `task_type`: "chore"
- `priority`: 3 (low - maintenance tasks are important but rarely urgent)
Parse the user input:
- Split on the **last** occurrence of a delimiter to preserve titles containing dashes
- Use right-split (rsplit with maxsplit=1) on ` - ` or switch to ` -- ` as delimiter
- If a delimiter is found: title = left part, description = right part
- If no delimiter is found: title = entire input, description = null
```python
call_tool(
server_name="gobby-tasks",
tool_name="create_task",
arguments={
"title": "<parsed title>",
"description": "<parsed description or null>", # Must be null (None in Python), not omitted or empty string
"task_type": "chore",
"priority": 3,
"session_id": "<session_id>" # Required - from session context
}
)
```
**Note on `description`**: When no description is provided, explicitly set the key to `null` (or `None` in Python). Do not omit the key or use an empty string.
```python
# Correct - explicit null
{"description": None} # Python
{"description": null} # JSON
# Incorrect - do not use
{} # Omitting the key
{"description": ""} # Empty string
```
After creating, confirm with the task reference (e.g., "Created chore #128: Update dependencies").
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.
SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.
Python backend development expertise for FastAPI, security patterns, database operations, Upstash integrations, and code quality. Use when: (1) Building REST APIs with FastAPI, (2) Implementing JWT/OAuth2 authentication, (3) Setting up SQLAlchemy/async databases, (4) Integrating Redis/Upstash caching, (5) Refactoring AI-generated Python code (deslopification), (6) Designing API patterns, or (7) Optimizing backend performance.
Drive the full internationalization journey for a project — detect the stack, recommend a library, set up the chosen library, wrap existing strings, and optionally connect a translation platform. Use when the user asks to add or configure i18n, internationalization, localization, multi-language support, or translations — including when they explicitly mention LinguiJS, Lingui, next-intl, "wrap strings", "find hardcoded text", "make my app translatable", or "set up translations". Triggers on g...
PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.