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
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자