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.
- {factorly-0.8.2 → factorly-0.9.1}/PKG-INFO +15 -24
- {factorly-0.8.2 → factorly-0.9.1}/README.md +14 -23
- {factorly-0.8.2 → factorly-0.9.1}/factorly/__init__.py +1 -1
- {factorly-0.8.2 → factorly-0.9.1}/factorly.egg-info/PKG-INFO +15 -24
- {factorly-0.8.2 → factorly-0.9.1}/pyproject.toml +1 -1
- {factorly-0.8.2 → factorly-0.9.1}/factorly/__main__.py +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/factorly/cli.py +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/factorly.egg-info/SOURCES.txt +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/factorly.egg-info/dependency_links.txt +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/factorly.egg-info/entry_points.txt +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/factorly.egg-info/top_level.txt +0 -0
- {factorly-0.8.2 → factorly-0.9.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.
|
|
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
|
[](https://github.com/factorly-dev/factorly)
|
|
33
33
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
34
34
|
|
|
35
|
-
**
|
|
35
|
+
**Build what your agent can do.**
|
|
36
36
|
|
|
37
|
-
|
|
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
|
-
|
|
40
|
+
</center>
|
|
42
41
|
|
|
43
|
-
Your agent sees workflows,
|
|
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
|
-
|
|
62
|
+
# 4. Optional, start the UI
|
|
63
|
+
factorly ui
|
|
64
|
+
```
|
|
67
65
|
|
|
68
|
-
|
|
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
|
-
|
|
68
|
+
## What It Does
|
|
71
69
|
|
|
72
|
-
|
|
73
|
-
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
74
|
-
```
|
|
70
|
+
**Define** — one config, every protocol, 36 templates included
|
|
75
71
|
|
|
76
|
-
|
|
72
|
+
**Test** — Try tools in the UI, see the response, iterate before giving your agent access
|
|
77
73
|
|
|
78
|
-
|
|
74
|
+
**Compose** — workflows with per-step policies, deterministic sequences
|
|
79
75
|
|
|
80
|
-
|
|
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
|
[](https://github.com/factorly-dev/factorly)
|
|
15
15
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
16
16
|
|
|
17
|
-
**
|
|
17
|
+
**Build what your agent can do.**
|
|
18
18
|
|
|
19
|
-
|
|
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
|
-
|
|
22
|
+
</center>
|
|
24
23
|
|
|
25
|
-
Your agent sees workflows,
|
|
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
|
-
|
|
44
|
+
# 4. Optional, start the UI
|
|
45
|
+
factorly ui
|
|
46
|
+
```
|
|
49
47
|
|
|
50
|
-
|
|
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
|
-
|
|
50
|
+
## What It Does
|
|
53
51
|
|
|
54
|
-
|
|
55
|
-
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
56
|
-
```
|
|
52
|
+
**Define** — one config, every protocol, 36 templates included
|
|
57
53
|
|
|
58
|
-
|
|
54
|
+
**Test** — Try tools in the UI, see the response, iterate before giving your agent access
|
|
59
55
|
|
|
60
|
-
|
|
56
|
+
**Compose** — workflows with per-step policies, deterministic sequences
|
|
61
57
|
|
|
62
|
-
|
|
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
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.
|
|
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
|
[](https://github.com/factorly-dev/factorly)
|
|
33
33
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
34
34
|
|
|
35
|
-
**
|
|
35
|
+
**Build what your agent can do.**
|
|
36
36
|
|
|
37
|
-
|
|
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
|
-
|
|
40
|
+
</center>
|
|
42
41
|
|
|
43
|
-
Your agent sees workflows,
|
|
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
|
-
|
|
62
|
+
# 4. Optional, start the UI
|
|
63
|
+
factorly ui
|
|
64
|
+
```
|
|
67
65
|
|
|
68
|
-
|
|
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
|
-
|
|
68
|
+
## What It Does
|
|
71
69
|
|
|
72
|
-
|
|
73
|
-
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
74
|
-
```
|
|
70
|
+
**Define** — one config, every protocol, 36 templates included
|
|
75
71
|
|
|
76
|
-
|
|
72
|
+
**Test** — Try tools in the UI, see the response, iterate before giving your agent access
|
|
77
73
|
|
|
78
|
-
|
|
74
|
+
**Compose** — workflows with per-step policies, deterministic sequences
|
|
79
75
|
|
|
80
|
-
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|