mirror of
https://github.com/Piebald-AI/claude-code-system-prompts.git
synced 2026-05-30 13:45:23 +08:00
34 lines
984 B
Markdown
34 lines
984 B
Markdown
<!--
|
|
name: 'Skill: /insights report output'
|
|
description: Formats and displays the insights usage report results after the user runs the /insights slash command
|
|
ccVersion: 2.1.101
|
|
variables:
|
|
- INSIGHTS_DATA
|
|
- REPORT_URL
|
|
- HTML_FILE_PATH
|
|
- FACETS_DIRECTORY
|
|
- AT_A_GLANCE_SUMMARY
|
|
- ADDITIONAL_CONTEXT_BLOCK
|
|
- ADDITIONAL_MESSAGE_BLOCK
|
|
-->
|
|
The user just ran /insights to generate a usage report analyzing their Claude Code sessions.
|
|
|
|
Here is the full insights data:
|
|
${INSIGHTS_DATA}
|
|
|
|
Report URL: ${REPORT_URL}
|
|
HTML file: ${HTML_FILE_PATH}
|
|
Facets directory: ${FACETS_DIRECTORY}
|
|
|
|
At-a-glance summary (for your context only — the user has not seen any output yet):
|
|
${AT_A_GLANCE_SUMMARY}${ADDITIONAL_CONTEXT_BLOCK}
|
|
|
|
Output the text between <message> tags verbatim as your entire response. Do not omit any line:
|
|
|
|
<message>
|
|
Your shareable insights report is ready:
|
|
${REPORT_URL}${ADDITIONAL_MESSAGE_BLOCK}
|
|
|
|
Want to dig into any section or try one of the suggestions?
|
|
</message>
|