Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Utopia5327/claude-plugin-for-revit-bim --skill acc-reportsgit clone --depth 1 https://github.com/Utopia5327/claude-plugin-for-revit-bimWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports)<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports"><img src="https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00169 | $0.02848 |
| Opus 5 | $0.00084 | $0.01424 |
| Sonnet 5 | $0.00034 | $0.00570 |
| Haiku 4.5 | $0.00017 | $0.00285 |
Grade A, and why
acc-reports scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 348 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ACC Data Reports & Exports
Export ACC project data for:
"$ARGUMENTS"
Prerequisites
- APS credentials configured (see
acc-api-setupskill) - For Issues/RFIs: 3-legged token required
- For Docs/Clash data: 2-legged token is sufficient
pip install requests openpyxl
Script 1: Export all ACC Issues to CSV
Issues API requires a 3-legged token (user context).
import os, csv, requests
from datetime import datetime
# ── Configuration ─────────────────────────────────────────────────────────────
PROJECT_ID = os.environ.get("APS_PROJECT_ID_RAW") # WITHOUT b. prefix
OUTPUT_PATH = r"C:\Reports\acc_issues_export.csv"
BASE_ISSUES = "https://developer.api.autodesk.com/construction/issues/v1"
# ─────────────────────────────────────────────────────────────────────────────
def get_all_issues(client, project_id):
"""Fetch all issues from ACC using pagination."""
all_issues = []
offset = 0
limit = 100
while True:
url = f"{BASE_ISSUES}/projects/{project_id}/issues"
params = {"limit": limit, "offset": offset,
"filterType": "all"} # include all statuses
data = client.get(url, params=params)
issues = data.get("results", [])
total = data.get("pagination", {}).get("totalResults", 0)
all_issues.extend(issues)
offset += limit
if offset >= total or not issues:
break
return all_issues, total
def issues_to_csv(issues, output_path):
"""Write issues list to CSV."""
if not issues:
print("No issues found.")
return
os.makedirs(os.path.dirname(output_path), exist_ok=True)
fieldnames = [
"Issue Number", "Title", "Status", "Assigned To",
"Due Date", "Created By", "Created Date",
"Root Cause", "Type", "Sub-type",
"Location", "Description", "Closed Date",
]
with open(output_path, "w", newline="", encoding="utf-8") as f:
writer = csv.DictWriter(f, fieldnames=fieldnames, extrasaction="ignore")
writer.writeheader()
for issue in issues:
attrs = issue.get("attributes", {})
writer.writerow({
"Issue Number": attrs.get("displayId", ""),
"Title": attrs.get("title", ""),
"Status": attrs.get("status", ""),
"Assigned To": (attrs.get("assignedTo", {}) or {}).get("displayName", ""),
"Due Date": attrs.get("dueDate", ""),
"Created By": (attrs.get("createdBy", {}) or {}).get("displayName", ""),
"Created Date": attrs.get("createdAt", ""),
"Root Cause": attrs.get("rootCauseLabel", ""),
"Type": attrs.get("issueTypeLabel", ""),
"Sub-type": attrs.get("issueSubTypeLabel", ""),
"Location": attrs.get("locationDetails", ""),
"Description": attrs.get("description", "")[:200] if attrs.get("description") else "",
"Closed Date": attrs.get("closedAt", ""),
})
print(f"Issues exported: {len(issues)} → {output_path}")
if __name__ == "__main__":
# client must use a 3-legged token
issues, total = get_all_issues(client, PROJECT_ID)
print(f"Fetched {len(issues)} of {total} issues")
issues_to_csv(issues, OUTPUT_PATH)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 348 lines · 169 tokens per session scan A e1aba3439c5d
acc-reports is a skill published in the GitHub repository Utopia5327/claude-plugin-for-revit-bim (6 stars, last pushed 6mo ago), licensed MIT. It adds 169 tokens to every session and 2,848 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
slack-report-delivery
Deliver formatted network reports, audit results, topology diagrams, and compliance documentation to Slack channels with rich Block Kit formatting. Use when posting a health check report, sharing a security audit, delivering topology diagrams, or sending scheduled network reports to Slack.
google-workspace-ops
Operate across Google Drive, Docs, Sheets, and Slides as one workflow surface for plans, trackers, decks, and shared documents. Use when the user needs to find, summarize, edit, migrate, or clean up Google Workspace assets without dropping to raw tool calls.
google-workspace-ops
Operate across Google Workspace tools with reusable patterns for docs, sheets, calendar, drive, and gmail.
aaif-sync-chapters
Push intake decisions out of the Intake Ops sheet — accepted organizers onto the Chapters List and into each chapter's About doc, intake people plus their survey interest into their chapter's Attendee CRM (accepted people always; organizer candidates only where the chapter is big enough to self-serve), per-chapter…
estimate
A development-estimation tool that analyzes project plans or source code and creates an Excel estimate grouped by development, labor, cloud, API, and miscellaneous costs.
stylework-yunxiao-requirement-sync
A workflow for exporting selected requirements from Yunxiao, a project-management service, into a new sheet in an existing DingTalk online spreadsheet. It formats the result into a fixed set of columns and groups it by iteration.