# Update

> Pull the latest Genesis updates from the remote repository. Use when the user says "update", "pull updates", "upgrade genesis", "check for updates", or "sync".

- **Type:** Skill
- **Install:** `agentstack add skill-xeeva-genesis-update`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [xeeva](https://agentstack.voostack.com/s/xeeva)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [xeeva](https://github.com/xeeva)
- **Source:** https://github.com/xeeva/Genesis/tree/main/.claude/skills/update
- **Website:** https://xeeva.github.io/Genesis

## Install

```sh
agentstack add skill-xeeva-genesis-update
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Update Genesis

Check for and apply updates from the Genesis repository.

## Steps

1. **Verify location:** Confirm you are operating in the Genesis directory (`~/claude/genesis/`). If not, inform the user and exit.

2. **Check for local changes:**
```bash
git -C ~/claude/genesis/ status --porcelain
```
If there are uncommitted changes, warn the user and ask whether to proceed (updates may conflict) or abort.

3. **Fetch updates:**
```bash
git -C ~/claude/genesis/ fetch origin main
```

4. **Compare versions:**
```bash
git -C ~/claude/genesis/ rev-list HEAD..origin/main --count
```
If the count is 0, report "Genesis is already up to date." and exit.

5. **Show what changed:**
```bash
git -C ~/claude/genesis/ log HEAD..origin/main --oneline --no-decorate
```
Present the list of incoming changes to the user. Highlight notable updates (new agents, skills, templates, or stack support).

6. **Confirm with the user:** Ask whether to apply the updates. Use AskUserQuestion.

7. **Apply updates:**
```bash
git -C ~/claude/genesis/ pull origin main
```

8. **Report results:** Summarise what was updated. If new skills or agents were added, mention them. If templates changed, note that future generated projects will use the updated templates.

## What is Preserved

The following user-specific files are gitignored and will **never** be overwritten by updates:
- `personalisation.md` -- your locale, output style, and profile preferences
- `environment.md` -- your platform, shell, and path configuration
- `.claude/settings.local.json` -- local Claude Code permission overrides

The `.example` versions of these files (shipped with Genesis) may be updated to reflect new configuration options. After updating, check if the examples have new fields you might want to add to your own files.

## Notes

- This skill only updates Genesis itself, not projects previously generated by Genesis.
- Previously generated projects are independent and unaffected by Genesis updates.
- If the pull fails due to conflicts, explain the situation and suggest `git stash` or manual resolution.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [xeeva](https://github.com/xeeva)
- **Source:** [xeeva/Genesis](https://github.com/xeeva/Genesis)
- **License:** MIT
- **Homepage:** https://xeeva.github.io/Genesis

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-xeeva-genesis-update
- Seller: https://agentstack.voostack.com/s/xeeva
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
