fabric-configure

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

A setup assistant for FABRIC Testbed, a research platform where users create experiments with computing, networking, and storage resources. It generates Python code to initialize and validate the environment and can show configuration and SSH-key setup.

In plain words
What is it for?
Creating notebook cells or a Python script that configures FABRIC, checks the setup, displays settings, and optionally manages SSH keys.
Why use it?
It reduces the manual work and setup errors involved in preparing access to FABRIC.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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

Good fit Creating notebook cells or a Python script that configures FABRIC, checks the setup, displays settings, and optionally manages SSH keys.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fabric-testbed/claude-plugin-marketplace/fabric-configure
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fabric-testbed/claude-plugin-marketplace --skill fabric-configure
Clone the repo
git clone --depth 1 https://github.com/fabric-testbed/claude-plugin-marketplace

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-configure

README.md
[![agentmods](https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure/github.svg)](https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure)
Your own site
<a href="https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure"><img src="https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure/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-configure

Your own site · 80×15
<a href="https://agentmods.dev/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure"><img src="https://agentmods.dev/badge/skills/fabric-testbed/claude-plugin-marketplace/fabric-configure.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,092 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.01092
Opus 5 $0.00010 $0.00546
Sonnet 5 $0.00004 $0.00218
Haiku 4.5 $0.00002 $0.00109

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

Security

Grade A, and why

fabric-configure 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-configure/SKILL.md · 159 lines

How it starts

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

Instructions

When invoked, generate Python code (notebook cells or script) to set up and validate a FABRIC testbed environment. Ask the user whether they want Jupyter notebook cells or a standalone Python script.

Steps:

  1. Generate the import and FablibManager initialization
  2. Include verify_and_configure() to validate the environment
  3. Show how to display the current configuration
  4. Optionally show SSH key setup if requested

Always use the canonical import:

from fabrictestbed_extensions.fablib.fablib import FablibManager

API Reference

FablibManager Constructor

FablibManager(
    fabric_rc: str = None,           # Path to fabric_rc config file
    credmgr_host: str = None,
    orchestrator_host: str = None,
    core_api_host: str = None,
    am_host: str = None,
    token_location: str = None,
    project_id: str = None,
    bastion_username: str = None,
    bastion_key_location: str = None,
    log_level: str = "INFO",
    log_file: str = "/tmp/fablib/fablib.log",
    data_dir: str = "/tmp/fablib",
    offline: bool = False,
    auto_token_refresh: bool = True,
    validate_config: bool = True,
)

Key Methods

  • fablib.verify_and_configure(validate_only=False) — Validates configuration; creates SSH keys and bastion config if validate_only=False
  • fablib.show_config(output=None, fields=None, quiet=False, pretty_names=True) — Display current configuration. output: "text", "pandas", "json"
  • fablib.save_config() — Write configuration to file for subsequent use
  • fablib.get_image_names() — Returns dict of available OS images with default users and descriptions
  • fablib.list_sites() — Quick test that API connectivity works

Environment Variables

The following environment variables configure FABlib (alternatively set in fabric_rc file):

Variable Description
FABRIC_CREDMGR_HOST Credential manager host
FABRIC_ORCHESTRATOR_HOST Orchestrator host
FABRIC_CORE_API_HOST Core API host
FABRIC_TOKEN_LOCATION Path to token file
FABRIC_BASTION_HOST Bastion host for SSH
FABRIC_BASTION_USERNAME Bastion SSH username
FABRIC_BASTION_KEY_LOCATION Path to bastion SSH private key
FABRIC_SLICE_PRIVATE_KEY_FILE Path to slice SSH private key
FABRIC_SLICE_PUBLIC_KEY_FILE Path to slice SSH public key
FABRIC_PROJECT_ID FABRIC project ID

Read the full file on GitHub · 159 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 · 159 lines · 20 tokens per session scan A ca5a9148c3bd

Subscribe to this mod's changes

fabric-configure 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,092 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

latchbio-integration

Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving data, integrating Registry, or launching and…

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

remote-compute-ssh

Evaluate and use SSH Remote Compute before choosing where to run GPU, high-memory, parallel, batch, model-inference, bioinformatics, or other long-running scientific work; supports short remote commands and asynchronous jobs with automatic harvest and analysis.

aipoch/open-science · 53 tokens

modal-compute

Run explicitly chosen research benchmark or replication jobs on Modal's serverless infrastructure. Use when a Feynman research workflow needs burst remote GPU compute and the Modal CLI is available.

companion-inc/feynman · 39 tokens

dnanexus-integration

DNAnexus cloud genomics platform. Build apps/applets, manage data (upload/download), dxpy Python SDK, run workflows, FASTQ/BAM/VCF, for genomics pipeline development and execution.

synthetic-sciences/openscience · 49 tokens

latchbio-integration

Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.

synthetic-sciences/openscience · 45 tokens

modal-serverless-gpu

Run approved CPU or GPU work through OpenScience computejob on the user's configured Modal account. Use for isolated scientific scripts, dependency provisioning, durable outputs, logs, status, cancellation, and recovery. Never invoke the Modal SDK or CLI directly.

synthetic-sciences/openscience · 54 tokens