qgenda — community qgenda, claude-qgenda-skill, community, ide skills

v1.0.0

このスキルについて

QGendaのスケジューリングシステムとのシームレスな統合が必要なヘルスケアエージェントに適しています。python-qgendaパッケージを使用します。 Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. Use when the user asks about schedules, availability, shifts, who is working, or anything related to QGenda.

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, 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
9/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

QGendaのスケジューリングシステムとのシームレスな統合が必要なヘルスケアエージェントに適しています。python-qgendaパッケージを使用します。 Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. Use when the user asks about schedules, availability, shifts, who is working, or anything related to QGenda.

このスキルを使用する理由

エージェントにQGendaシステムを問い合わせて操作する能力を与え、python-qgendaパッケージを使用して効率的なスケジュール管理を実現し、安全なAPI呼び出しを通じて放射線科医と医療専門家に利益を提供します。

おすすめ

QGendaのスケジューリングシステムとのシームレスな統合が必要なヘルスケアエージェントに適しています。python-qgendaパッケージを使用します。

実現可能なユースケース for qgenda

放射線科医のQGendaスケジュールを照会する
スタッフのシフト管理を自動化する
患者のお約束データを取得する

! セキュリティと制限

  • python-qgendaパッケージのインストールが必要
  • QGENDA_CONF_FILE環境変数の設定が必要
  • QGendaシステムのアクセス可能性に依存

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?

QGendaのスケジューリングシステムとのシームレスな統合が必要なヘルスケアエージェントに適しています。python-qgendaパッケージを使用します。 Query QGenda scheduling system for physician schedules, staff info, tasks, and facilities. Use when the user asks about schedules, availability, shifts, who is working, or anything related to QGenda.

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: 放射線科医のQGendaスケジュールを照会する, スタッフのシフト管理を自動化する, 患者のお約束データを取得する.

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?

python-qgendaパッケージのインストールが必要. QGENDA_CONF_FILE環境変数の設定が必要. QGendaシステムのアクセス可能性に依存.

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

Install qgenda, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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

関連スキル

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

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者