fito-plugin

Fito Plugin — fetch web content, extract knowledge components (execution facts, domain concepts, usage scenarios) from API/tool documentation, and generate content for social networks.

Packages

Package details

skillprompt

Install fito-plugin from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:fito-plugin
Package
fito-plugin
Version
0.1.0
Published
May 13, 2026
Downloads
not available
Author
pasemes
License
unknown
Types
skill, prompt
Size
178.1 KB
Dependencies
0 dependencies · 0 peers
Pi manifest JSON
{
  "prompts": [
    "./prompts"
  ],
  "skills": [
    "./skills"
  ],
  "agents": [
    "./agents"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

Fito Plugin

A pi package for extracting knowledge components from API/tool documentation using the Theory of Robust Knowledge of APIs, and generating instructional content.

What's Included

Resource File(s) Purpose
Prompt Templates prompts/*.md Slash commands for the pipeline stages
Skill skills/url-content-fetcher/SKILL.md URL content fetching guidance
Agents agents/*.md Subagent definitions for identification and generation
Templates templates/*.md Content structure templates for generation agents

Prompt Templates (Slash Commands)

Command Purpose
/fetch-urls-content Fetch and clean content from a list of URLs
/identify-execution-facts Extract execution facts from fetched docs
/identify-domain-concepts Extract domain concepts from fetched docs
/identify-usage-scenarios Extract usage scenarios from fetched docs
/generate-domain-concepts Generate detailed content for identified domain concepts
/generate-execution-facts Generate detailed content for identified execution facts

Typical Workflow

1. /fetch-urls-content urls.txt
2. /identify-execution-facts <tool-name>
3. /identify-domain-concepts <tool-name>
4. /identify-usage-scenarios <tool-name>
5. /generate-execution-facts <tool-name>
6. /generate-domain-concepts <tool-name>

Installation

pi install ./fito-plugin

Or for project-level install:

pi install -l ./fito-plugin

File Structure

fito-plugin/
├── package.json                    ← Pi manifest
├── prompts/
│   ├── fetch-urls-content.md
│   ├── identify-execution-facts.md
│   ├── identify-domain-concepts.md
│   ├── identify-usage-scenarios.md
│   ├── generate-domain-concepts.md
│   └── generate-execution-facts.md
├── skills/
│   └── url-content-fetcher/
│       └── SKILL.md
├── agents/
│   ├── domain-concept-identifier.md
│   ├── domain-concept-content-generator.md
│   ├── execution-fact-identifier.md
│   ├── execution-fact-content-generator.md
│   └── usage-scenario-identifier.md
├── templates/
│   ├── concept-content-template.md
│   └── execution-fact-content-template.md
└── README.md