| 16 | import * as os from 'os'; |
| 17 | |
| 18 | export interface AnalyticsEvent { |
| 19 | skill: string; |
| 20 | ts: string; |
| 21 | repo: string; |
| 22 | event?: string; |
| 23 | pattern?: string; |
| 24 | } |
| 25 | |
| 26 | const ANALYTICS_FILE = path.join(os.homedir(), '.gstack', 'analytics', 'skill-usage.jsonl'); |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected