AgentStack
SKILL verified Apache-2.0 Self-run

Fetch Pyxll Docs

skill-pyxll-pyxll-agent-skills-fetch-pyxll-docs · by pyxll

Fetch the PyXLL documentation and use it as context for any task involving PyXLL. Invoke automatically before writing, editing, reviewing, or debugging any PyXLL code, and for release notes, changelog, or version history lookups. Training-data knowledge of PyXLL is incomplete and may be wrong — the live docs are the only authoritative source.

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-pyxll-pyxll-agent-skills-fetch-pyxll-docs

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Fetch Pyxll Docs? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Fetch the PyXLL documentation and use it as context for any PyXLL task. Training-data knowledge of PyXLL is incomplete and may be wrong — the live docs are the only authoritative source.

Steps

  1. Fetch the documentation index to find relevant pages:

``bash curl -s https://www.pyxll.com/llms.txt ``

Read the entire output without truncating — the index contains a navigation guide mapping common tasks to sections, followed by page titles, descriptions, and URLs grouped by topic.

  1. Fetch the individual pages relevant to the task directly by their URL:

``bash curl -s ``

  1. If the index does not surface what you need, use the search script to find

pages by keyword.

The search script is located at scripts/search-pyxll-docs.sh relative to this skill's base directory.

``bash /scripts/search-pyxll-docs.sh [keyword2 ...] ``

Important: Replace with the actual base directory path provided when this skill is loaded.

The script outputs a list of matching page URLs (one per line). Fetch each returned URL individually using curl.

  1. If the task involves writing or modifying code that uses the Excel COM API — any

code that calls pyxll.xl_app() or XLCell.to_range(), or that accesses COM objects such as Range, Worksheet, Workbook, Font, Interior, Borders, etc.:

  • Invoke the pywin32-excel-docs skill before writing any code. Its resources/

directory is the authoritative reference for all Excel COM classes — do not rely on training data for COM API details.

  • Fetch https://www.pyxll.com/docs/userguide/vba.md and read it in full — it

documents critical differences between VBA and Python, including how COM properties that take arguments must be called as Get(args) rather than Property(args) as in VBA.

  1. If the task involves writing or modifying a ribbon or context menu XML file

(customUI XML, ribbon = in pyxll.cfg, or any onAction/getLabel/getEnabled ribbon callback):

  • Invoke the office-customui-xsd skill before writing any XML. It is the

authoritative reference for which elements, attributes, and nesting are valid — training-data knowledge of the schema is incomplete and produces invalid XML.

Rules

  • ALWAYS fetch these docs before writing, modifying, or troubleshooting any

PyXLL-specific code or behaviour. Before suggesting a manual workaround for a PyXLL problem, check whether PyXLL already has a built-in solution (decorator parameter, config key, or feature).

  • Before using any PyXLL class, function, decorator, or configuration setting

(including pyxll.cfg section names and their keys), fetch the relevant documentation and use only what is explicitly documented. Never infer behaviour, key names, or parameter names from conventions or assumptions — if it is not in the docs, do not use it.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.