# Send GoalGetter to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "goalgetter",
    "name": "GoalGetter",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/Steffano198/goalgetter",
    "canonicalUrl": "https://clawhub.ai/Steffano198/goalgetter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/goalgetter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=goalgetter",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "goalgetter",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T06:01:06.405Z",
      "expiresAt": "2026-05-06T06:01:06.405Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=goalgetter",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=goalgetter",
        "contentDisposition": "attachment; filename=\"goalgetter-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "goalgetter"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/goalgetter"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/goalgetter",
    "downloadUrl": "https://openagent3.xyz/downloads/goalgetter",
    "agentUrl": "https://openagent3.xyz/skills/goalgetter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/goalgetter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/goalgetter/agent.md"
  }
}
```
## Documentation

### GoalGetter - Tasks & Goals in Markdown

Simple task and goal tracking using plain markdown files. No external dependencies.

### Data Location

Default: ~/.openclaw/goalgetter/

Files:

tasks.md - Todo list
goals.md - Goal tracking with streaks
done/ - Archive of completed items

### Tasks

Add task:

echo "- [ ] $TEXT" >> ~/.openclaw/goalgetter/tasks.md

Complete task:

# Read tasks.md, find task, move to done/TIMESTAMP.md, mark complete

List tasks:

cat ~/.openclaw/goalgetter/tasks.md

### Goals

Add goal:

echo "## $GOAL_NAME" >> ~/.openclaw/goalgetter/goals.md
echo "- streak: 0" >> ~/.openclaw/goalgetter/goals.md
echo "- created: $DATE" >> ~/.openclaw/goalgetter/goals.md
echo "- log:" >> ~/.openclaw/goalgetter/goals.md

Mark goal done:

# Read goals.md, increment streak, add date to log

Show streaks:

# Read goals.md and display each goal with current streak

### tasks.md

# Tasks

- [ ] Buy groceries
- [x] Call dentist
- [ ] Finish SAAS research

### goals.md

# Goals

## Meditation
- streak: 5
- created: 2026-01-15
- log:
  - 2026-01-15
  - 2026-01-16
  - 2026-01-17
  - 2026-01-18
  - 2026-01-19

## Exercise
- streak: 2
- created: 2026-02-01
- log:
  - 2026-02-15
  - 2026-02-16

### Usage Examples

User saysAction"Add task: finish report"Add to tasks.md"Show my tasks"Cat tasks.md"Complete task: finish report"Mark complete, move to done/"New goal: meditation"Add to goals.md"Did meditation"Increment streak, add date"Show goal streaks"Display all goals with streaks"How's my meditation goal?"Show streak for that goal

### Notes

Always create ~/.openclaw/goalgetter/ if it doesn't exist
Use ISO dates (YYYY-MM-DD) for consistency
Use read tool to view current state before modifying
Use write tool to update files
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Steffano198
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T06:01:06.405Z
- Expires at: 2026-05-06T06:01:06.405Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/goalgetter)
- [Send to Agent page](https://openagent3.xyz/skills/goalgetter/agent)
- [JSON manifest](https://openagent3.xyz/skills/goalgetter/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/goalgetter/agent.md)
- [Download page](https://openagent3.xyz/downloads/goalgetter)