fabric-slice-manage

fabric-slice-manage is a skill for Claude Code from fabric-testbed/claude-plugin-marketplace. It costs 20 tokens per session (1,491 once invoked), scanned A, original, Apache-2.0.

A skill for managing FABRIC experiment slices, which are temporary research-computing setups made from connected machines and networks.

In plain words
What is it for?
Use it to list, inspect, renew, modify, or delete FABRIC slices and view their machines, networks, and interfaces.
Why use it?
It provides a consistent way to handle the full lifetime of these experimental environments and avoid operating on the wrong slice.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/ubuntu/script.sh.

Part of the fablib plugin — 18 skills, 1 command shipped together

Good fit Use it to list, inspect, renew, modify, or delete FABRIC slices and view their machines, networks, and interfaces.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add fabric-testbed/claude-plugin-marketplace
Claude Code
/plugin install fablib

Made for: Claude Code.

Or install fablib, the plugin that ships this one along with the rest of its 18 skills, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fabric-slice-manage

README.md
[![agentmods](https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage/github.svg)](https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage)
Your own site
<a href="https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage"><img src="https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fabric-slice-manage

Your own site · 80×15
<a href="https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage"><img src="https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-slice-manage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,491 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.01491
Opus 5 $0.00010 $0.00745
Sonnet 5 $0.00004 $0.00298
Haiku 4.5 $0.00002 $0.00149

Measured 11d ago against content hash 6ebbc8b5125a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fabric-slice-manage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/fablib/skills/fabric-slice-manage/SKILL.md · 279 lines

How it starts

The opening of the file, as written. The whole thing — 279 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Instructions

When invoked, generate code for FABRIC slice lifecycle management operations. Determine which operation the user needs:

  • List: Show all slices or filter by state
  • Inspect: Get details of a specific slice (nodes, networks, interfaces)
  • Renew: Extend a slice lease
  • Modify: Add or remove nodes/networks from a running slice
  • Delete: Remove a slice or all slices

Always assume FABlib is initialized as fablib.

API Reference

Listing Slices

fablib.list_slices(
    excludes: list[SliceState] = None,  # States to exclude
    output: str = None,                  # "text", "pandas", "json", "list"
    fields: list[str] = None,           # Fields to display
    quiet: bool = False,
    filter_function=None,
    pretty_names: bool = True,
)

Getting a Slice

# By name
slice = fablib.get_slice(name="my-slice")

# By ID
slice = fablib.get_slice(slice_id="abc-123-def")

# Get multiple slices
slices = fablib.get_slices(
    excludes: list[SliceState] = None,
    slice_name: str = None,
    slice_id: str = None,
    user_only: bool = True,
)

Slice Information

slice.show(fields=None, output=None, quiet=False, colors=False, pretty_names=True)
slice.list_nodes(output=None, fields=None, colors=False, quiet=False, filter_function=None, pretty_names=True)
slice.list_networks(output=None, fields=None, colors=False, quiet=False, filter_function=None, pretty_names=True)
slice.list_interfaces(output=None, fields=None, quiet=False, filter_function=None, pretty_names=True, refresh=False)

Accessing Nodes

node = slice.get_node(name="node1")
nodes = slice.get_nodes()

# Execute commands on a node
stdout, stderr = node.execute("hostname")

# SSH command for manual access
print(node.get_ssh_command())

# Management IP (IPv6)
print(node.get_management_ip())

Renewing a Slice

# Renew by number of days
slice.renew(days=14)

# Renew to a specific end date (UTC)
from datetime import datetime, timezone, timedelta
end_date = (datetime.now(timezone.utc) + timedelta(days=6)).strftime("%Y-%m-%d %H:%M:%S %z")
slice.renew(end_date=end_date)

Read the full file on GitHub · 279 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 279 lines · 20 tokens per session scan A 6ebbc8b5125a

Subscribe to this mod's changes

fabric-slice-manage is a skill published in the GitHub repository fabric-testbed/claude-plugin-marketplace (2 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 20 tokens to every session and 1,491 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AI/scientific-agent-skills · 68 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

mapping-to-snomed

Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…

maziyarpanahi/openmed · 205 tokens