@inference-gateway/cli 0.133.1 → 0.134.0
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,6 +94,8 @@ An agentic command-line assistant that writes code, understands project context,
|
|
|
94
94
|
with a separate configurable system prompt - off by default - [Learn more →](docs/heartbeat.md)
|
|
95
95
|
- **Agent Skills**: Drop-in `SKILL.md` instruction folders the agent discovers and loads on demand;
|
|
96
96
|
install them straight from GitHub with `infer skills install` - on by default - [Learn more →](docs/skills.md)
|
|
97
|
+
- **Plugins**: Install Claude Code-format plugins (skills + an always-on `AGENTS.md` ruleset) from GitHub with
|
|
98
|
+
`infer plugins install owner/repo` - content only, plugin code is never executed - [Learn more →](docs/plugins.md)
|
|
97
99
|
- **Persistent Memory**: Cross-session memory stored as individual Markdown fact-files with an
|
|
98
100
|
auto-maintained `MEMORY.md` index that is injected at session start - on by default - [Learn more →](#persistent-memory)
|
|
99
101
|
- **Subagents**: Spawn parallel `infer agent` subprocesses from chat with the `Agent` tool to fan out
|
|
@@ -611,6 +613,18 @@ infer skills uninstall pdf # Remove a skill by name
|
|
|
611
613
|
|
|
612
614
|
See [Agent Skills](#agent-skills) and [docs/skills.md](docs/skills.md) for the format.
|
|
613
615
|
|
|
616
|
+
**`infer plugins`** - Manage Claude Code-format plugins (skills + instruction rulesets)
|
|
617
|
+
|
|
618
|
+
```bash
|
|
619
|
+
infer plugins install DietrichGebert/ponytail # Install a plugin from GitHub
|
|
620
|
+
infer plugins list # List installed plugins
|
|
621
|
+
infer plugins disable ponytail # Unload its skills + instructions
|
|
622
|
+
infer plugins update # Re-fetch all plugins
|
|
623
|
+
infer plugins remove ponytail # Remove entirely
|
|
624
|
+
```
|
|
625
|
+
|
|
626
|
+
See [docs/plugins.md](docs/plugins.md) for the mapping and security model.
|
|
627
|
+
|
|
614
628
|
**`infer export`** - Export a conversation to a Markdown file
|
|
615
629
|
|
|
616
630
|
```bash
|