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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.5.4
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
  [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
@@ -30,9 +32,13 @@ Description-Content-Type: text/markdown
30
32
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
31
33
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
32
34
 
33
- One command. All your tools. Credentials stay out of your agent's hands.
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
- Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault. Every call is logged. Governance rules let you deny destructive operations, require approval for writes, rate-limit calls, and detect agent loops. REST APIs, CLI commands, and MCP servers — one config, one audit log, one set of rules.
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. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
- factorly tools import templates github
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 GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
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
- - **Credential isolation** — secrets in encrypted vault, agent never sees them
69
- - **Governance** — deny, confirm, rate limit, loop detection per tool
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
  [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
@@ -12,9 +14,13 @@
12
14
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
13
15
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
14
16
 
15
- One command. All your tools. Credentials stay out of your agent's hands.
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
- Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault. Every call is logged. Governance rules let you deny destructive operations, require approval for writes, rate-limit calls, and detect agent loops. REST APIs, CLI commands, and MCP servers — one config, one audit log, one set of rules.
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. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
29
- factorly tools import templates github
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 GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
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
- - **Credential isolation** — secrets in encrypted vault, agent never sees them
51
- - **Governance** — deny, confirm, rate limit, loop detection per tool
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
 
@@ -3,4 +3,4 @@
3
3
 
4
4
  """Factorly — security and governance layer for AI agent tool access."""
5
5
 
6
- __version__ = "0.5.4"
6
+ __version__ = "0.6.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.5.4
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
  [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
@@ -30,9 +32,13 @@ Description-Content-Type: text/markdown
30
32
  [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
31
33
  [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
32
34
 
33
- One command. All your tools. Credentials stay out of your agent's hands.
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
- Factorly is a local proxy between your AI agent and the tools it uses. Secrets stay in an encrypted vault. Every call is logged. Governance rules let you deny destructive operations, require approval for writes, rate-limit calls, and detect agent loops. REST APIs, CLI commands, and MCP servers — one config, one audit log, one set of rules.
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. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
- factorly tools import templates github
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 GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
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
- - **Credential isolation** — secrets in encrypted vault, agent never sees them
69
- - **Governance** — deny, confirm, rate limit, loop detection per tool
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,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "factorly"
7
- version = "0.5.4"
7
+ version = "0.6.0"
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