acc-reports

acc-reports is a skill for Claude Code from Utopia5327/claude-plugin-for-revit-bim. It costs 169 tokens per session (2,848 once invoked), scanned A, original, MIT.

A guide for exporting Autodesk Construction Cloud project data to CSV or Excel spreadsheets. It covers issues, requests for information, documents, clashes, transmittals, and project activity.

In plain words
What is it for?
Use it to create issues registers, RFI status reports, document logs, clash summaries, transmittal reports, and activity exports.
Why use it?
It avoids copying project records by hand and provides scripts for collecting data through Autodesk’s API.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the revit-bim plugin — 25 skills, 3 agents, 2 hooks shipped together

Good fit Use it to create issues registers, RFI status reports, document logs, clash summaries, transmittal reports, and activity exports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/utopia5327/claude-plugin-for-revit-bim/acc-reports
Install

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.

Any agent
npx skills add Utopia5327/claude-plugin-for-revit-bim --skill acc-reports
Clone the repo
git clone --depth 1 https://github.com/Utopia5327/claude-plugin-for-revit-bim

Made for: Claude Code.

Or install revit-bim, the plugin that ships this one along with the rest of its 25 skills, 3 agents, 2 hooks.

Wrote 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.

agentmods badge for acc-reports

README.md
[![agentmods](https://agentmods.dev/badge/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports/github.svg)](https://agentmods.dev/skills/utopia5327/claude-plugin-for-revit-bim/acc-reports)
Your own site
<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.

agentmods 80×15 button for acc-reports

Your own site · 80×15
<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>
Per session 169 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,848 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash e1aba3439c5d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

skills/acc-reports/SKILL.md · 348 lines

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-setup skill)
  • 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)

Read the full file on GitHub · 348 lines

Changes

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.

  1. 10d ago First seen · 348 lines · 169 tokens per session scan A e1aba3439c5d

Subscribe to this mod's changes

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.

Related

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.

automateyournetwork/netclaw · 54 tokens

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.

ufy2024/AuC · 59 tokens

google-workspace-ops

Operate across Google Workspace tools with reusable patterns for docs, sheets, calendar, drive, and gmail.

aaronnat23/disp8ch · 0 tokens

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…

aaif/community-events · 162 tokens

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.

Dannykkh/skill-olympus · 66 tokens

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.

PANGKAIFENG/ai-product-manager-skills · 153 tokens