flipsidecrypto/edisyl-tools · Archived

edisyl

Build and run AI agent fleets on the Flipside platform, connect data warehouses, and resolve natural-language analytics questions through Stratum. Use when authoring agents and skills from YAML, composing them into fleets and teams, starting missions, connecting a data source (Snowflake, Postgres, BigQuery, Databricks, Redshift, MySQL), or driving Stratum NL→SQL resolve and indexing. Requires the Edisyl CLI (https://github.com/FlipsideCrypto/edisyl-tools).

First seen May 21, 2026

Installation

$ npx skills add flipsidecrypto/edisyl-tools --skill edisyl

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 1
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.1
CompatibilityRequires edisyl CLI installed and authenticated (edisyl login)
Allowed toolsBash(edisyl:*) Read Write
More metadata
author
flipside
version
1.1
homepage
https://app.edisyl.com/

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,275 B
  • docs SUMMARY.md 476 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Edisyl CLI

First, check the CLI is installed and authenticated:

edisyl --version
edisyl whoami

If the command is missing, install it:

curl -fsSL https://raw.githubusercontent.com/FlipsideCrypto/edisyl-tools/main/install.sh | sh

Then run the in-CLI navigation guide:

edisyl llm onboard

In-CLI reference (use these for deep reference)

The CLI ships embedded docs that stay in sync with the deployed version. Prefer these over guessing — they're offline, auth-free, and exhaustive.

Topic Run
Agents — author, validate, push, pull, run YAML-defined agents edisyl llm agents
Skills — package reusable knowledge + tools for agents edisyl llm skills
Data sources — connect a warehouse, kick the introspect/enrich pipeline edisyl llm data-sources
Stratum — natural-language → SQL resolve, indexing, cascade debugging, curation edisyl llm stratum
Queries — direct SQL (rare — agents/Stratum handle this) edisyl llm queries
Reports — visualizations and the data_visualization skill edisyl llm reports

The three surfaces

Surface What you do Where to learn more
Agents & skills Author YAML, validate, push, pull, run edisyl llm agents · edisyl llm skills
Fleets, teams, missions Compose agents into fleets, run missions, chat edisyl llm onboard
Data sources & Stratum Connect a warehouse, then resolve NL questions to SQL edisyl llm data-sources · edisyl llm stratum

Global flags worth knowing: -j/--json (every command), -p/--profile, -e local|staging|prod (endpoint override), -v (verbose request/response logging).

Common one-liners

# Agents & skills
edisyl agent init <name> && edisyl agent push <file>
edisyl skills init <name> && edisyl skills push <file>

# Fleets + missions
edisyl fleet list
edisyl mission create <fleet> "<prompt>" --follow
edisyl mission tree <id>
edisyl chat <fleet>                   # @<agent-slug> to target one agent

# Data source onboarding
edisyl data-sources test-connection --type postgres --config-file db.json
edisyl data-sources create --name "Demo" --type postgres --config-file db.json
edisyl stratum status -d <data-source-id>

# Stratum resolve + diagnose
edisyl stratum resolve "<question>" -d <ds> --wait --rows 5
edisyl stratum trace <resolution-id>
edisyl stratum candidates list

When in doubt, run the matching edisyl llm <topic> for the exhaustive reference.