From e6be52bd659f917b1b7ae52cac5410d1321799a4 Mon Sep 17 00:00:00 2001 From: Yos Riady Date: Thu, 23 Jul 2026 15:50:25 +0700 Subject: [PATCH] Improve CLI repository discoverability --- LICENSE | 21 +++++++++++++++++++++ README.md | 17 +++++++++++++++++ SKILLS.md | 8 ++++++++ package.json | 1 + 4 files changed, 47 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8ea0d96 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Formo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 602c065..b5db10c 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,23 @@ npm install -g @formo/cli npx @formo/cli ``` +## Install the Formo Analytics agent skill + +This repository also ships the [`formo-analytics`](skills/formo-analytics/SKILL.md) skill for Claude Code, Codex, and other [Agent Skills](https://agentskills.io)-compatible tools. It teaches agents to use Formo's MCP server, CLI, and REST API for project-scoped product and onchain analytics. + +Install it in the current project: + +```bash +npx skills add https://github.com/getformo/cli/tree/main/skills/formo-analytics +``` + +Or install it globally for Claude Code and Codex: + +```bash +npx skills add getformo/cli --skill formo-analytics --global \ + --agent claude-code --agent codex +``` + ## Authentication Save your API key locally: diff --git a/SKILLS.md b/SKILLS.md index 4679811..0657d32 100644 --- a/SKILLS.md +++ b/SKILLS.md @@ -2,6 +2,14 @@ Skills available via the `formo` CLI. Requires a Formo API key — set `FORMO_API_KEY` or run `formo login `. +## Install the agent skill + +Install the [`formo-analytics`](skills/formo-analytics/SKILL.md) skill in an Agent Skills-compatible tool: + +```bash +npx skills add https://github.com/getformo/cli/tree/main/skills/formo-analytics +``` + --- ## Authentication diff --git a/package.json b/package.json index 56bcf28..b7ac0b9 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.0.2", "packageManager": "pnpm@11.1.2", "description": "Formo API CLI — query profiles and analytics data", + "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/getformo/cli.git"