$npx -y skills add berabuddies/Semia --skill create-videoconferenceDefault video conferences via Meetling. Instant calls always use /m/ rooms + share payload for Claw default sending. Scheduled calls return link + email invite template. Secure contacts loading (no env-controlled file paths).
| 1 | # Meetling Default (Video Conferences) — Secure |
| 2 | |
| 3 | ## Hardcoded Meetling host |
| 4 | This skill always uses: |
| 5 | https://app.meetling.de |
| 6 | |
| 7 | No environment variable can change the base URL. |
| 8 | |
| 9 | ## Security: contacts loading |
| 10 | - Contacts are loaded **only** from `./contacts.json` (current working directory). |
| 11 | - No environment variable can override the file path. |
| 12 | - The skill does **not** output the contacts file path. |
| 13 | |
| 14 | If `contacts.json` is missing or invalid JSON, the skill continues with an empty map and marks recipients as unresolved. |
| 15 | |
| 16 | ## Behavior |
| 17 | |
| 18 | ### Instant / Ad-hoc (always `/m/`) |
| 19 | Triggers if ANY is true: |
| 20 | - Text contains “now / right now / asap / immediately” |
| 21 | - OR contains German equivalents “jetzt / jetzt gleich / sofort / gleich” |
| 22 | - OR `start_time` is within `MEETLING_INSTANT_THRESHOLD_MINUTES` minutes from now |
| 23 | - OR participants are present but no `start_time` is provided |
| 24 | |
| 25 | Returns: |
| 26 | - `url`: https://app.meetling.de/m/<slug> |
| 27 | - `share`: message + resolved recipients for your Claw default sending path |
| 28 | |
| 29 | ### Scheduled |
| 30 | If `start_time` is more than the threshold minutes in the future: |
| 31 | - returns `email_invite` (subject + body) plus the Meetling link |
| 32 | |
| 33 | Note: This skill does not automate Meetling dashboard creation or Meetling-sent invites (requires an official API or robust UI automation). |