Skip to main content

Agentic Fabriq SDK

agentic-fabriq-sdk provides a Python SDK and CLI tool for interacting with Agentic Fabriq.

What's included:

  • 🐍 Python SDK: High-level client (af_sdk.FabriqClient) and DX layer
  • 🛠️ CLI Tool: afctl command for authentication and management
  • 🔐 OAuth2/PKCE: Secure browser-based authentication with token storage

Install

pip install agentic-fabriq-sdk

This installs both the Python library and the afctl CLI tool.

Quickstart

CLI Tool

Authenticate and manage your Agentic Fabriq resources:

# Login with OAuth2 (browser opens automatically)
afctl auth login

# Check authentication status
afctl auth status

# List available tools
afctl tools list

# List agents
afctl agents list

# Get help
afctl --help

Python SDK

from af_sdk.fabriq_client import FabriqClient

TOKEN = "..."  # Bearer JWT for the Fabriq Gateway
BASE = "https://dashboard.agenticfabriq.com"

async def main():
    async with FabriqClient(base_url=BASE, auth_token=TOKEN) as af:
        # List tools and agents
        tools = await af.list_tools()
        agents = await af.list_agents()
        
        # Invoke Slack tools
        result = await af.invoke_connection("my-slack", method="get_channels")
        
        # Post a Slack message
        await af.invoke_connection(
            "my-slack",
            method="post_message",
            parameters={"channel": "test", "text": "Hello from SDK!"}
        )
        
        # Get Gmail emails
        result = await af.invoke_connection(
            "gmail_work",
            method="get_emails",
            parameters={"max_results": 10, "q": "is:unread"}
        )
        emails = result.get("emails", [])
        
        # Send an email
        await af.invoke_connection(
            "gmail_work",
            method="send_email",
            parameters={
                "to": "recipient@example.com",
                "subject": "Hello from SDK",
                "body": "This email was sent via Agentic Fabric SDK!"
            }
        )

DX orchestration:

from af_sdk.dx import ToolFabric, AgentFabric, Agent, tool

slack = ToolFabric(provider="slack", base_url="https://dashboard.agenticfabriq.com", access_token=TOKEN, tenant_id=TENANT)
agents = AgentFabric(base_url="https://dashboard.agenticfabriq.com", access_token=TOKEN, tenant_id=TENANT)

@tool
def echo(x: str) -> str:
    return x

bot = Agent(
    system_prompt="demo",
    tools=[echo],
    agents=agents.get_agents(["summarizer"]),
    base_url="https://dashboard.agenticfabriq.com",
    access_token=TOKEN,
    tenant_id=TENANT,
    provider_fabrics={"slack": slack},
)
print(bot.run("Summarize my Slack messages"))

B2B2C (developer edition): your users' tools

from af_sdk import AgenticFabriq

af = AgenticFabriq()  # AF_APP_ID / AF_APP_SECRET / AF_BASE_URL

url = await af.initiate_connection(request, provider="gmail")                    # OAuth
url = await af.initiate_connection(request, provider="notion", method="api_key")  # no OAuth: user pastes a key on our page

async with await af.for_user(request) as session:
    tools = await session.get_tools()
    result = await session.call_tool("notion_list_pages", {})

See docs/developer-edition/quickstart.md for the full flow, including webhooks and framework adapters. AF_BASE_URL selects the environment (the MCP endpoint follows it).

License

Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentic_fabriq_sdk-0.1.88.tar.gz (92.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentic_fabriq_sdk-0.1.88-py3-none-any.whl (114.8 kB view details)

Uploaded Python 3

File details

Details for the file agentic_fabriq_sdk-0.1.88.tar.gz.

File metadata

  • Download URL: agentic_fabriq_sdk-0.1.88.tar.gz
  • Upload date:
  • Size: 92.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.4.1 CPython/3.14.7 Darwin/25.4.0

File hashes

Hashes for agentic_fabriq_sdk-0.1.88.tar.gz
Algorithm Hash digest
SHA256 3a65630a197b33e938148d6468d68e6a0de3333de096648c5a04f42b9ea0a06a
MD5 384f4369497edd4ddcf7459b50ab5f5d
BLAKE2b-256 267f009a32bf5ce8486b1657ad2c46607e6b888c1fd48c8548681621063b4b81

See more details on using hashes here.

File details

Details for the file agentic_fabriq_sdk-0.1.88-py3-none-any.whl.

File metadata

File hashes

Hashes for agentic_fabriq_sdk-0.1.88-py3-none-any.whl
Algorithm Hash digest
SHA256 d88a49fbcdd77dde953f95145c7c49bc8c5cbf3675044a4c1967b3edd9cd6e9c
MD5 d6138ba01707060fb2173e62814adb8a
BLAKE2b-256 fb384ca00517e2faf94f782306754bdb12dd039214f3a3bb067e24255ac155b0

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.88 This release

2 files

0.1.87

2 files

0.1.86

2 files

0.1.85

2 files

0.1.84

2 files

0.1.83

2 files

0.1.82

2 files

0.1.81

2 files

0.1.80

2 files

0.1.79

2 files

0.1.78

2 files

0.1.77

2 files

0.1.76

2 files

0.1.75

2 files

0.1.74

2 files

0.1.73

2 files

0.1.72

2 files

0.1.71

2 files

0.1.70

2 files

0.1.69

2 files

0.1.68

2 files

0.1.67

2 files

0.1.66

2 files

0.1.65

2 files

0.1.64

2 files

0.1.63

2 files

0.1.62

2 files

0.1.60

2 files

0.1.59

2 files

0.1.58

2 files

0.1.57

2 files

0.1.56

2 files

0.1.55

2 files

0.1.54

2 files

0.1.53

2 files

0.1.52

2 files

0.1.51

2 files

0.1.50

2 files

0.1.49

2 files

0.1.48

2 files

0.1.47

2 files

0.1.46

2 files

0.1.45

2 files

0.1.44

2 files

0.1.43

2 files

0.1.42

2 files

0.1.41

2 files

0.1.40

2 files

0.1.39

2 files

0.1.38

2 files

0.1.37

2 files

0.1.36

2 files

0.1.35

2 files

0.1.34

2 files

0.1.33

2 files

0.1.32

2 files

0.1.31

2 files

0.1.30

2 files

0.1.29

2 files

0.1.28

2 files

0.1.27

2 files

0.1.26

2 files

0.1.25

2 files

0.1.24

2 files

0.1.23

2 files

0.1.22

2 files

0.1.21

2 files

0.1.20

2 files

0.1.19

2 files

0.1.18

2 files

0.1.17

2 files

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page