# Personal Assistant

> >

- **Type:** Skill
- **Install:** `agentstack add skill-omnigentx-jarvis-personal-assistant`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [omnigentx](https://agentstack.voostack.com/s/omnigentx)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [omnigentx](https://github.com/omnigentx)
- **Source:** https://github.com/omnigentx/jarvis/tree/main/backend/.fast-agent/skills/personal-assistant

## Install

```sh
agentstack add skill-omnigentx-jarvis-personal-assistant
```

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

## About

# CALENDAR & EMAIL MANAGEMENT

ALWAYS call `get_current_time` BEFORE any time-related operation.
NEVER guess the year, month, or day. Use real-time data only.

## Decision Tree

```
What does the user want?
├── View calendar → calendar_list_events(timeMin, timeMax)
├── Create event/meeting → calendar_create_event(summary, start, end)
│   └── Need Meet link? → Auto-created with event
├── Delete event → (1) list_events → (2) get eid → (3) delete_event(eid)
├── Send email → gmail_send(to, subject, body)
├── Read email → gmail_list() → gmail_read(id)
└── Reminder → use cron_create (see the cron-management skill)
    └── cron_create with exec_mode="reminder"
    └── DO NOT use Google Calendar for reminders. Use the cron scheduler.
```

1. Call each tool ONLY ONCE per request.
2. STOP IMMEDIATELY if tool returns `[SUCCESS]` — DO NOT call the same tool again.
3. If tool returns `WARNING` → read carefully and ask user for clarification.

## Delete Event — Workflow

1. `calendar_list_events` → find the event
2. Get `eid` from URL (part after `eid=`)
3. `calendar_delete_event(eid)`
4. Call list_events ONLY ONCE → DELETE immediately

- Calling `calendar_create_event` twice → creates duplicate → VIOLATION
- Not calling `get_current_time` → guessing wrong year → VIOLATION
- Tool returned SUCCESS and you call it again → VIOLATION

## ✅ Correct Examples
- "Created meeting 'Sprint Review' at 2pm Monday March 17."
- "Deleted event 'Team Meeting' tomorrow."

## Source & license

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

- **Author:** [omnigentx](https://github.com/omnigentx)
- **Source:** [omnigentx/jarvis](https://github.com/omnigentx/jarvis)
- **License:** MIT

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-omnigentx-jarvis-personal-assistant
- Seller: https://agentstack.voostack.com/s/omnigentx
- 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%.
