Install
$ agentstack add skill-harness-harness-skills-audit-report ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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 No
- ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Audit Report Skill
Generate audit reports and compliance trails using Harness MCP v2 tools.
MCP v2 Tools Used
harness_listwithresource_type: "audit_event"-- list audit events with filtersharness_describewithresource_type: "audit_event"-- discover available filters and fields
Audit events are read-only. You can list and filter them but cannot create, update, or delete them.
Instructions
Step 1: Discover Available Filters
harness_describe(resource_type="audit_event")
Understand the available filter parameters before querying.
Step 2: List Audit Events
harness_list(
resource_type="audit_event",
org_id="", # optional - scope to organization
project_id="", # optional - scope to project
search_term="", # optional
page=0,
size=100
)
Step 3: Filter by Action Type
Filter results by these standard action types:
| Action | Description | |--------|-------------| | CREATE | Resource creation | | UPDATE | Resource modification | | DELETE | Resource deletion | | LOGIN | User authentication | | LOGOUT | Session termination | | ACCESS | Resource access | | EXECUTE | Pipeline execution |
Step 4: Filter by Resource Type
Common resource types in audit events:
| Resource Type | Examples | |---------------|----------| | PIPELINE | Pipeline create, update, delete | | SECRET | Secret access, rotation, deletion | | CONNECTOR | Connector modifications | | SERVICE | Service definition changes | | ENVIRONMENT | Environment configuration changes | | USER | User management actions | | ROLE | Role assignment changes | | USER_GROUP | Group membership changes |
Step 5: Analyze and Correlate
- Group events by user to identify activity patterns
- Group events by resource to track change history
- Correlate timestamps to reconstruct incident timelines
- Flag anomalies (off-hours activity, unusual access patterns, privilege escalation)
Step 6: Generate Report
Format findings using the templates in references/report-templates.md.
For report templates (General, User Activity, Security) and compliance framework mappings (SOC 2, GDPR, HIPAA), consult references/report-templates.md.
Examples
Generate a 30-day audit report
/audit-report
Generate an audit report for the last 30 days
Investigate a specific user
/audit-report
What has john.doe@company.com been doing in the last 7 days?
Track production changes
/audit-report
Show all pipeline and environment changes in the production project this month
Security investigation
/audit-report
Show all secret access events and privilege changes from last week
Compliance evidence
/audit-report
Generate SOC2 audit evidence for Q4 covering access control and change management
Error Handling
| Error | Cause | Solution | |-------|-------|----------| | No audit events returned | Time range too narrow or wrong scope | Broaden time range; verify orgid/projectid | | Access denied | User lacks audit view permissions | Request core_audit_view permission | | Pagination incomplete | More events than page size | Increment page parameter until all pages fetched | | Search term returns nothing | User ID format mismatch | Try email, username, and display name variants |
Performance Notes
- Paginate through all results before generating the report. Incomplete data leads to inaccurate audit trails.
- Cross-reference events across scopes (account, org, project) for a complete picture. Do not skip scope levels.
- For compliance reports, verify every claim against actual audit data. Do not infer or assume activity that is not in the logs.
Troubleshooting
No Events Found
- Start with a broader time range and no filters
- Verify the orgid and projectid scope -- account-level events require no org/project filter
- Remove search_term to confirm events exist, then re-add filters
Missing User Activity
- Check both email and username formats for the user
- Service account activity may appear under a different principal name
- API key usage may not show as the human user
Incomplete Audit Trail
- Paginate through all results -- check if
sizereturned equals thesizerequested (more pages likely) - Account-level events are separate from org/project events -- query at the right scope
- Some event types may require specific permissions to view
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: harness
- Source: harness/harness-skills
- License: Apache-2.0
- Homepage: https://developer.harness.io/docs/platform/harness-ai/harness-skills/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.