qgenda — for Claude Code qgenda, claude-qgenda-skill, community, for Claude Code, ide skills, qgenda.conf, bash echo $QGENDA_CONF_FILE, helping, radiologist, scheduling

v1.0.0

Über diesen Skill

Ideal für Gesundheitsagenten, die eine nahtlose Integration mit QGenda-Planungssystemen unter Verwendung des python-qgenda-Pakets benötigen. Lokalisierte Zusammenfassung: Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Funktionen

The qgenda.conf credentials file location must be set via environment variable:
export QGENDA CONF FILE=/path/to/qgenda.conf
Before making any API calls, verify this is set:
echo $QGENDA CONF FILE
If not set, ask the user where their qgenda.conf file is located.

# Core Topics

lancereinsmith lancereinsmith
[0]
[0]
Updated: 3/14/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

Ideal für Gesundheitsagenten, die eine nahtlose Integration mit QGenda-Planungssystemen unter Verwendung des python-qgenda-Pakets benötigen. Lokalisierte Zusammenfassung: Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Ermächtigt Agenten, QGenda-Systeme abzufragen und zu interagieren, indem sie das python-qgenda-Paket für eine effiziente Terminverwaltung nutzen und Radiologen und Gesundheitsfachleuten durch sichere API-Aufrufe Vorteile bieten.

Am besten geeignet für

Ideal für Gesundheitsagenten, die eine nahtlose Integration mit QGenda-Planungssystemen unter Verwendung des python-qgenda-Pakets benötigen.

Handlungsfähige Anwendungsfälle for qgenda

Abfragen von QGenda-Schichten für Radiologen
Automatisieren der Schichtverwaltung des Personals
Abrufen von Patiententermin-Daten

! Sicherheit & Einschränkungen

  • Benötigt die Installation des python-qgenda-Pakets
  • Benötigt, dass die Umgebungsvariable QGENDA_CONF_FILE gesetzt ist
  • Hängt von der Zugänglichkeit des QGenda-Systems ab

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is qgenda?

Ideal für Gesundheitsagenten, die eine nahtlose Integration mit QGenda-Planungssystemen unter Verwendung des python-qgenda-Pakets benötigen. Lokalisierte Zusammenfassung: Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install qgenda?

Run the command: npx killer-skills add lancereinsmith/claude-qgenda-skill/qgenda. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for qgenda?

Key use cases include: Abfragen von QGenda-Schichten für Radiologen, Automatisieren der Schichtverwaltung des Personals, Abrufen von Patiententermin-Daten.

Which IDEs are compatible with qgenda?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for qgenda?

Benötigt die Installation des python-qgenda-Pakets. Benötigt, dass die Umgebungsvariable QGENDA_CONF_FILE gesetzt ist. Hängt von der Zugänglichkeit des QGenda-Systems ab.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add lancereinsmith/claude-qgenda-skill/qgenda. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use qgenda immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

qgenda

Lokalisierte Zusammenfassung: Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. This AI agent skill supports Claude

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

You are helping a radiologist query their QGenda scheduling system. Use the python-qgenda package and the helper script to answer their questions.

Environment Setup

The qgenda.conf credentials file location must be set via environment variable:

bash
1export QGENDA_CONF_FILE=/path/to/qgenda.conf

Before making any API calls, verify this is set:

bash
1echo $QGENDA_CONF_FILE

If not set, ask the user where their qgenda.conf file is located.

Helper Script

A helper script exists at scripts/qgenda_query.py in this project. Use it for common operations. Always run with uv run to ensure dependencies are available. Use --format table for readable output.

bash
1# Get schedule for a date range 2uv run python scripts/qgenda_query.py schedule --start 2025-01-01 --end 2025-01-31 3 4# Get schedule filtered by provider last name 5uv run python scripts/qgenda_query.py schedule --start 2025-01-01 --end 2025-01-31 --filter "StaffLName eq 'Smith'" 6 7# Get schedule with specific fields only 8uv run python scripts/qgenda_query.py schedule --start 2025-01-01 --end 2025-01-31 --select "StartDate,EndDate,StaffLName,TaskName" 9 10# List all staff members 11uv run python scripts/qgenda_query.py staff 12 13# List tasks 14uv run python scripts/qgenda_query.py tasks 15 16# List facilities 17uv run python scripts/qgenda_query.py facilities 18 19# Output as table or CSV 20uv run python scripts/qgenda_query.py staff --format table 21uv run python scripts/qgenda_query.py schedule --start 2025-01-01 --format csv

Writing Custom Queries

For queries the helper script doesn't cover, write inline Python using python-qgenda:

python
1import json, os 2from qgenda.api.client import QGendaClient 3 4client = QGendaClient() 5client.authenticate() 6 7response = client.get_schedule( 8 start_date='2025-01-01', 9 end_date='2025-01-31', 10 odata_kwargs={ 11 '$select': 'StartDate,EndDate,StaffFName,StaffLName,TaskName', 12 '$filter': "startswith(StaffLName, 'H')", 13 '$orderby': 'StartDate' 14 } 15) 16data = json.loads(response.text)

QGenda API Reference

See api-reference.md for full endpoint documentation.

Available Client Methods

MethodRequired ParamsOptional ParamsDescription
client.authenticate()----Login and cache bearer token
client.get_schedule(start_date, end_date)start_dateend_date, odata_kwargsGet schedule entries
client.get_staff()--odata_kwargsGet staff/provider list
client.get_task()--odata_kwargsGet task definitions
client.get_facility()--odata_kwargsGet facilities
client.get_timeevent(start_date)start_dateend_date, odata_kwargsGet time events
client.get_dailycase(start_date)start_dateend_date, odata_kwargsGet daily case info

OData Query Parameters

All GET endpoints support OData filtering via odata_kwargs:

  • $select - Choose fields: "StartDate,EndDate,StaffLName"
  • $filter - Filter results: "StaffLName eq 'Smith'", "startswith(StaffLName, 'H')"
  • $orderby - Sort: "StartDate", "StaffLName desc"

Common Schedule Fields

StartDate, StartDateUTC, EndDate, EndDateUTC, StaffFName, StaffLName, TaskName, CompName

Response Handling

All client methods return requests.Response objects. Parse with json.loads(response.text). Format results as readable tables for the user.

Guidelines

  • Always confirm the date range before querying (default to today if not specified)
  • Present schedule data in a clean, readable table format
  • If a query returns too much data, suggest narrowing the date range or adding filters
  • Never expose or log credentials from qgenda.conf

Verwandte Fähigkeiten

Looking for an alternative to qgenda or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler