factorly 0.5.4__tar.gz → 0.6.0__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.5.4 → factorly-0.6.0}/PKG-INFO +19 -8
- {factorly-0.5.4 → factorly-0.6.0}/README.md +18 -7
- {factorly-0.5.4 → factorly-0.6.0}/factorly/__init__.py +1 -1
- {factorly-0.5.4 → factorly-0.6.0}/factorly.egg-info/PKG-INFO +19 -8
- {factorly-0.5.4 → factorly-0.6.0}/pyproject.toml +1 -1
- {factorly-0.5.4 → factorly-0.6.0}/factorly/__main__.py +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/factorly/cli.py +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/factorly.egg-info/SOURCES.txt +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/factorly.egg-info/dependency_links.txt +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/factorly.egg-info/entry_points.txt +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/factorly.egg-info/top_level.txt +0 -0
- {factorly-0.5.4 → factorly-0.6.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
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
|
|
@@ -22,6 +22,8 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
<center>
|
|
26
|
+
|
|
25
27
|
# Factorly
|
|
26
28
|
|
|
27
29
|
[](https://pypi.org/project/factorly/)
|
|
@@ -30,9 +32,13 @@ Description-Content-Type: text/markdown
|
|
|
30
32
|
[](https://github.com/factorly-dev/factorly)
|
|
31
33
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
Stop giving your AI agents your API keys.
|
|
36
|
+
|
|
37
|
+
</center>
|
|
38
|
+
|
|
39
|
+
Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault on your device. Every call is logged, governed, and rate-limited.
|
|
34
40
|
|
|
35
|
-
|
|
41
|
+
Install it, and your agent has safe access to GitHub, Slack, Stripe, and 30+ more services, plus any CLI or MCP server, in under a minute.
|
|
36
42
|
|
|
37
43
|
## Install
|
|
38
44
|
|
|
@@ -42,9 +48,11 @@ pip install factorly
|
|
|
42
48
|
|
|
43
49
|
## Quick Start
|
|
44
50
|
|
|
51
|
+
Then, define your tools, secure your credentials, and sync with your agent:
|
|
52
|
+
|
|
45
53
|
```bash
|
|
46
|
-
# 1.
|
|
47
|
-
factorly
|
|
54
|
+
# 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
55
|
+
factorly init
|
|
48
56
|
|
|
49
57
|
# 2. Store your credentials in the encrypted vault
|
|
50
58
|
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
@@ -53,7 +61,7 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
|
53
61
|
factorly sync
|
|
54
62
|
```
|
|
55
63
|
|
|
56
|
-
The agent never sees your
|
|
64
|
+
The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
|
|
57
65
|
|
|
58
66
|
## Already Using an MCP Server?
|
|
59
67
|
|
|
@@ -63,13 +71,16 @@ Wrap it with Factorly — no config file needed, no changes to the server:
|
|
|
63
71
|
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
64
72
|
```
|
|
65
73
|
|
|
74
|
+
Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
|
|
75
|
+
|
|
66
76
|
## What You Get
|
|
67
77
|
|
|
68
|
-
- **
|
|
69
|
-
- **Governance** — deny,
|
|
78
|
+
- **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
|
|
79
|
+
- **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
|
|
70
80
|
- **Audit log** — every call logged with params, response, and governance outcome
|
|
71
81
|
- **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
|
|
72
82
|
- **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
|
|
83
|
+
- **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
|
|
73
84
|
|
|
74
85
|
## Supported Platforms
|
|
75
86
|
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
|
|
5
5
|
```
|
|
6
6
|
|
|
7
|
+
<center>
|
|
8
|
+
|
|
7
9
|
# Factorly
|
|
8
10
|
|
|
9
11
|
[](https://pypi.org/project/factorly/)
|
|
@@ -12,9 +14,13 @@
|
|
|
12
14
|
[](https://github.com/factorly-dev/factorly)
|
|
13
15
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
Stop giving your AI agents your API keys.
|
|
18
|
+
|
|
19
|
+
</center>
|
|
20
|
+
|
|
21
|
+
Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault on your device. Every call is logged, governed, and rate-limited.
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
Install it, and your agent has safe access to GitHub, Slack, Stripe, and 30+ more services, plus any CLI or MCP server, in under a minute.
|
|
18
24
|
|
|
19
25
|
## Install
|
|
20
26
|
|
|
@@ -24,9 +30,11 @@ pip install factorly
|
|
|
24
30
|
|
|
25
31
|
## Quick Start
|
|
26
32
|
|
|
33
|
+
Then, define your tools, secure your credentials, and sync with your agent:
|
|
34
|
+
|
|
27
35
|
```bash
|
|
28
|
-
# 1.
|
|
29
|
-
factorly
|
|
36
|
+
# 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
37
|
+
factorly init
|
|
30
38
|
|
|
31
39
|
# 2. Store your credentials in the encrypted vault
|
|
32
40
|
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
@@ -35,7 +43,7 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
|
35
43
|
factorly sync
|
|
36
44
|
```
|
|
37
45
|
|
|
38
|
-
The agent never sees your
|
|
46
|
+
The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
|
|
39
47
|
|
|
40
48
|
## Already Using an MCP Server?
|
|
41
49
|
|
|
@@ -45,13 +53,16 @@ Wrap it with Factorly — no config file needed, no changes to the server:
|
|
|
45
53
|
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
46
54
|
```
|
|
47
55
|
|
|
56
|
+
Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
|
|
57
|
+
|
|
48
58
|
## What You Get
|
|
49
59
|
|
|
50
|
-
- **
|
|
51
|
-
- **Governance** — deny,
|
|
60
|
+
- **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
|
|
61
|
+
- **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
|
|
52
62
|
- **Audit log** — every call logged with params, response, and governance outcome
|
|
53
63
|
- **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
|
|
54
64
|
- **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
|
|
65
|
+
- **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
|
|
55
66
|
|
|
56
67
|
## Supported Platforms
|
|
57
68
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
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
|
|
@@ -22,6 +22,8 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
<center>
|
|
26
|
+
|
|
25
27
|
# Factorly
|
|
26
28
|
|
|
27
29
|
[](https://pypi.org/project/factorly/)
|
|
@@ -30,9 +32,13 @@ Description-Content-Type: text/markdown
|
|
|
30
32
|
[](https://github.com/factorly-dev/factorly)
|
|
31
33
|
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
Stop giving your AI agents your API keys.
|
|
36
|
+
|
|
37
|
+
</center>
|
|
38
|
+
|
|
39
|
+
Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault on your device. Every call is logged, governed, and rate-limited.
|
|
34
40
|
|
|
35
|
-
|
|
41
|
+
Install it, and your agent has safe access to GitHub, Slack, Stripe, and 30+ more services, plus any CLI or MCP server, in under a minute.
|
|
36
42
|
|
|
37
43
|
## Install
|
|
38
44
|
|
|
@@ -42,9 +48,11 @@ pip install factorly
|
|
|
42
48
|
|
|
43
49
|
## Quick Start
|
|
44
50
|
|
|
51
|
+
Then, define your tools, secure your credentials, and sync with your agent:
|
|
52
|
+
|
|
45
53
|
```bash
|
|
46
|
-
# 1.
|
|
47
|
-
factorly
|
|
54
|
+
# 1. Configure your tools or install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
55
|
+
factorly init
|
|
48
56
|
|
|
49
57
|
# 2. Store your credentials in the encrypted vault
|
|
50
58
|
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
@@ -53,7 +61,7 @@ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
|
53
61
|
factorly sync
|
|
54
62
|
```
|
|
55
63
|
|
|
56
|
-
The agent never sees your
|
|
64
|
+
The agent never sees your credentials. Factorly injected it, made the API call, logged it, and returned the data.
|
|
57
65
|
|
|
58
66
|
## Already Using an MCP Server?
|
|
59
67
|
|
|
@@ -63,13 +71,16 @@ Wrap it with Factorly — no config file needed, no changes to the server:
|
|
|
63
71
|
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
64
72
|
```
|
|
65
73
|
|
|
74
|
+
Same tools, same interface. Now every call is logged, output is compressed, loops are detected, and calls are rate-limited.
|
|
75
|
+
|
|
66
76
|
## What You Get
|
|
67
77
|
|
|
68
|
-
- **
|
|
69
|
-
- **Governance** — deny,
|
|
78
|
+
- **Encrypted vault** — AES-256-GCM with per-entry encryption, secrets never leave your device
|
|
79
|
+
- **Governance** — deny destructive operations, require confirmation for writes, rate-limit calls, detect agent loops
|
|
70
80
|
- **Audit log** — every call logged with params, response, and governance outcome
|
|
71
81
|
- **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
|
|
72
82
|
- **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
|
|
83
|
+
- **Output compression** — compresses JSON, deduplicates logs, truncates to head + tail to save tokens
|
|
73
84
|
|
|
74
85
|
## Supported Platforms
|
|
75
86
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|