Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"name": "AAIF",
"url": "https://github.com/aaif"
},
"homepage": "https://github.com/aaif/events",
"repository": "https://github.com/aaif/events",
"homepage": "https://github.com/aaif/community-events",
"repository": "https://github.com/aaif/community-events",
"license": "MIT",
"keywords": ["aaif", "events", "community", "google-workspace", "luma", "linkedin"]
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ also work in claude.ai and the Claude Agent SDK — see [Using in other tools](#
## Install (Claude Code)

```bash
/plugin marketplace add aaif/events
/plugin marketplace add aaif/community-events
/plugin install aaif-events@aaif
```

`marketplace add aaif/events` reads `.claude-plugin/marketplace.json` from this
`marketplace add aaif/community-events` reads `.claude-plugin/marketplace.json` from this
repo; `@aaif` is the marketplace name. After installing, the skills auto‑activate
when you describe a matching task (e.g. “draft the announcement post for our July
event”), or invoke one explicitly with `/aaif-<skill>` (e.g.
Expand All @@ -28,10 +28,10 @@ event”), or invoke one explicitly with `/aaif-<skill>` (e.g.

Prefer the guided UI flow? Run these inside Claude Code:

1. **Add the marketplace** (the full git URL is equivalent to the `aaif/events`
1. **Add the marketplace** (the full git URL is equivalent to the `aaif/community-events`
shorthand used in [Install](#install-claude-code) above):
```bash
/plugin marketplace add https://github.com/aaif/events.git#main
/plugin marketplace add https://github.com/aaif/community-events.git#main
```
2. **Enable it:** run `/plugin`, tab to **Marketplaces**, and enable the **aaif**
marketplace.
Expand Down
2 changes: 1 addition & 1 deletion skills/aaif-create-chapter/scripts/create_chapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def geocode_city(name, retries=3):
url = "https://nominatim.openstreetmap.org/search?" + urllib.parse.urlencode(
{"q": name, "format": "json", "limit": 1})
req = urllib.request.Request(url, headers={ # Nominatim requires a UA
"User-Agent": "aaif-create-chapter/1.0 (AAIF chapter cloner; +https://github.com/aaif/events)"})
"User-Agent": "aaif-create-chapter/1.0 (AAIF chapter cloner; +https://github.com/aaif/community-events)"})
for i in range(retries):
try:
with urllib.request.urlopen(req, timeout=15) as r:
Expand Down