@owlmetry/cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/dist/index.cjs +1 -1
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# @owlmetry/cli
|
|
2
|
+
|
|
3
|
+
CLI for [OwlMetry](https://owlmetry.com) — self-hosted metrics tracking for mobile and backend apps.
|
|
4
|
+
|
|
5
|
+
Manage projects, apps, metrics, funnels, and events from the terminal. Ships with AI skill files to teach your coding agent how to use OwlMetry.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @owlmetry/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Sign up or log in
|
|
17
|
+
owlmetry auth send-code --email you@example.com
|
|
18
|
+
owlmetry auth verify --email you@example.com --code 123456
|
|
19
|
+
|
|
20
|
+
# Save your credentials
|
|
21
|
+
owlmetry setup --endpoint https://api.owlmetry.com --api-key owl_agent_...
|
|
22
|
+
|
|
23
|
+
# Explore
|
|
24
|
+
owlmetry projects
|
|
25
|
+
owlmetry apps
|
|
26
|
+
owlmetry events --last 1h
|
|
27
|
+
owlmetry metrics
|
|
28
|
+
owlmetry funnels
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## AI Skills
|
|
32
|
+
|
|
33
|
+
This package bundles skill files that teach AI agents (Claude Code, Codex, etc.) how to use OwlMetry — including the CLI, Node SDK, and Swift SDK.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
owlmetry skills
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
This prints the absolute paths to each skill file. Point your agent to these files to give it full OwlMetry knowledge.
|
|
40
|
+
|
|
41
|
+
## Links
|
|
42
|
+
|
|
43
|
+
- [Website](https://owlmetry.com)
|
|
44
|
+
- [GitHub](https://github.com/Jasonvdb/owlmetry)
|
package/dist/index.cjs
CHANGED
|
@@ -6977,7 +6977,7 @@ ${source_default.dim("Point your AI agent to these files to teach it how to use
|
|
|
6977
6977
|
});
|
|
6978
6978
|
|
|
6979
6979
|
// src/index.ts
|
|
6980
|
-
var program2 = new Command().name("owlmetry").version("0.1.
|
|
6980
|
+
var program2 = new Command().name("owlmetry").version("0.1.1").description("OwlMetry CLI \u2014 query metrics and manage your apps from the terminal").addOption(
|
|
6981
6981
|
new Option("--format <format>", "Output format").choices(["table", "json", "log"]).default("table")
|
|
6982
6982
|
).option("--endpoint <url>", "OwlMetry server URL").option("--api-key <key>", "API key");
|
|
6983
6983
|
program2.addCommand(authCommand);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmetry/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OwlMetry CLI — manage projects, apps, metrics, funnels, and events from the terminal. Includes AI skill files for agent-assisted development.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/Jasonvdb/owlmetry.git",
|
|
9
|
+
"url": "git+https://github.com/Jasonvdb/owlmetry.git",
|
|
10
10
|
"directory": "apps/cli"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://owlmetry.com",
|