factorly 0.8.2__tar.gz → 0.9.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.8.2
3
+ Version: 0.9.1
4
4
  Summary: Security and governance layer for AI agent tool access
5
5
  License: GPL-3.0
6
6
  Project-URL: Homepage, https://github.com/factorly-dev/factorly
@@ -32,15 +32,14 @@ Description-Content-Type: text/markdown
32
32
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
33
33
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
34
34
 
35
- **Stop giving your AI agents your API keys.** One command. All your tools. Credentials stay out of your agent's hands.
35
+ **Build what your agent can do.**
36
36
 
37
- </center>
38
-
39
- Factorly is a local runtime for agent tool chains. It proxies agent tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything.
37
+ Define tools, compose workflows, test and run them.
38
+ MCP servers, REST APIs, and CLI commands in one config, one UI, one audit log.
40
39
 
41
- REST APIs, CLI commands, and MCP servers run through one config, one audit log, one set of rules.
40
+ </center>
42
41
 
43
- Your agent sees workflows, tool names, and data. Never secrets.
42
+ Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.
44
43
 
45
44
  ## Install
46
45
 
@@ -50,8 +49,6 @@ pip install factorly
50
49
 
51
50
  ## Quick Start
52
51
 
53
- Then, define your tools, secure your credentials, and sync with your agent:
54
-
55
52
  ```bash
56
53
  # 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
57
54
  factorly init
@@ -61,28 +58,22 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
61
58
 
62
59
  # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
63
60
  factorly sync
64
- ```
65
61
 
66
- The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
62
+ # 4. Optional, start the UI
63
+ factorly ui
64
+ ```
67
65
 
68
- ## Already Using an MCP Server?
66
+ Your agent connects to Factorly as a single MCP server or CLI and sees every tool you've configured. Credentials never leave the vault.
69
67
 
70
- Wrap it with Factorly — no config file needed, no changes to the server:
68
+ ## What It Does
71
69
 
72
- ```bash
73
- factorly wrap -- npx @modelcontextprotocol/server-github
74
- ```
70
+ **Define** — one config, every protocol, 36 templates included
75
71
 
76
- Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
72
+ **Test** Try tools in the UI, see the response, iterate before giving your agent access
77
73
 
78
- ## What You Get
74
+ **Compose** workflows with per-step policies, deterministic sequences
79
75
 
80
- - **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
81
- - **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
82
- - **Audit log** — every call logged with params, response, and governance outcome
83
- - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
84
- - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
85
- - **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
76
+ **Govern** — vault, policies, audit log. Built in, not bolted on.
86
77
 
87
78
  ## Supported Platforms
88
79
 
@@ -14,15 +14,14 @@
14
14
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
15
15
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
16
16
 
17
- **Stop giving your AI agents your API keys.** One command. All your tools. Credentials stay out of your agent's hands.
17
+ **Build what your agent can do.**
18
18
 
19
- </center>
20
-
21
- Factorly is a local runtime for agent tool chains. It proxies agent tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything.
19
+ Define tools, compose workflows, test and run them.
20
+ MCP servers, REST APIs, and CLI commands in one config, one UI, one audit log.
22
21
 
23
- REST APIs, CLI commands, and MCP servers run through one config, one audit log, one set of rules.
22
+ </center>
24
23
 
25
- Your agent sees workflows, tool names, and data. Never secrets.
24
+ Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.
26
25
 
27
26
  ## Install
28
27
 
@@ -32,8 +31,6 @@ pip install factorly
32
31
 
33
32
  ## Quick Start
34
33
 
35
- Then, define your tools, secure your credentials, and sync with your agent:
36
-
37
34
  ```bash
38
35
  # 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
39
36
  factorly init
@@ -43,28 +40,22 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
43
40
 
44
41
  # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
45
42
  factorly sync
46
- ```
47
43
 
48
- The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
44
+ # 4. Optional, start the UI
45
+ factorly ui
46
+ ```
49
47
 
50
- ## Already Using an MCP Server?
48
+ Your agent connects to Factorly as a single MCP server or CLI and sees every tool you've configured. Credentials never leave the vault.
51
49
 
52
- Wrap it with Factorly — no config file needed, no changes to the server:
50
+ ## What It Does
53
51
 
54
- ```bash
55
- factorly wrap -- npx @modelcontextprotocol/server-github
56
- ```
52
+ **Define** — one config, every protocol, 36 templates included
57
53
 
58
- Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
54
+ **Test** Try tools in the UI, see the response, iterate before giving your agent access
59
55
 
60
- ## What You Get
56
+ **Compose** workflows with per-step policies, deterministic sequences
61
57
 
62
- - **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
63
- - **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
64
- - **Audit log** — every call logged with params, response, and governance outcome
65
- - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
66
- - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
67
- - **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
58
+ **Govern** — vault, policies, audit log. Built in, not bolted on.
68
59
 
69
60
  ## Supported Platforms
70
61
 
@@ -3,4 +3,4 @@
3
3
 
4
4
  """Factorly — security and governance layer for AI agent tool access."""
5
5
 
6
- __version__ = "0.8.2"
6
+ __version__ = "0.9.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.8.2
3
+ Version: 0.9.1
4
4
  Summary: Security and governance layer for AI agent tool access
5
5
  License: GPL-3.0
6
6
  Project-URL: Homepage, https://github.com/factorly-dev/factorly
@@ -32,15 +32,14 @@ Description-Content-Type: text/markdown
32
32
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
33
33
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
34
34
 
35
- **Stop giving your AI agents your API keys.** One command. All your tools. Credentials stay out of your agent's hands.
35
+ **Build what your agent can do.**
36
36
 
37
- </center>
38
-
39
- Factorly is a local runtime for agent tool chains. It proxies agent tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything.
37
+ Define tools, compose workflows, test and run them.
38
+ MCP servers, REST APIs, and CLI commands in one config, one UI, one audit log.
40
39
 
41
- REST APIs, CLI commands, and MCP servers run through one config, one audit log, one set of rules.
40
+ </center>
42
41
 
43
- Your agent sees workflows, tool names, and data. Never secrets.
42
+ Factorly is a local runtime for agent tool chains. It manages tool calls, injects credentials from an encrypted vault, enforces governance rules, and logs everything. Your agent sees workflows, tools, and data. Secrets stay secret.
44
43
 
45
44
  ## Install
46
45
 
@@ -50,8 +49,6 @@ pip install factorly
50
49
 
51
50
  ## Quick Start
52
51
 
53
- Then, define your tools, secure your credentials, and sync with your agent:
54
-
55
52
  ```bash
56
53
  # 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
57
54
  factorly init
@@ -61,28 +58,22 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
61
58
 
62
59
  # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
63
60
  factorly sync
64
- ```
65
61
 
66
- The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
62
+ # 4. Optional, start the UI
63
+ factorly ui
64
+ ```
67
65
 
68
- ## Already Using an MCP Server?
66
+ Your agent connects to Factorly as a single MCP server or CLI and sees every tool you've configured. Credentials never leave the vault.
69
67
 
70
- Wrap it with Factorly — no config file needed, no changes to the server:
68
+ ## What It Does
71
69
 
72
- ```bash
73
- factorly wrap -- npx @modelcontextprotocol/server-github
74
- ```
70
+ **Define** — one config, every protocol, 36 templates included
75
71
 
76
- Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
72
+ **Test** Try tools in the UI, see the response, iterate before giving your agent access
77
73
 
78
- ## What You Get
74
+ **Compose** workflows with per-step policies, deterministic sequences
79
75
 
80
- - **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
81
- - **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
82
- - **Audit log** — every call logged with params, response, and governance outcome
83
- - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
84
- - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
85
- - **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
76
+ **Govern** — vault, policies, audit log. Built in, not bolted on.
86
77
 
87
78
  ## Supported Platforms
88
79
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "factorly"
7
- version = "0.8.2"
7
+ version = "0.9.1"
8
8
  description = "Security and governance layer for AI agent tool access"
9
9
  readme = "README.md"
10
10
  license = {text = "GPL-3.0"}
File without changes
File without changes
File without changes