factorly 0.2.0__tar.gz → 0.2.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.2.0 → factorly-0.2.1}/PKG-INFO +23 -21
- factorly-0.2.1/README.md +72 -0
- factorly-0.2.1/factorly/__init__.py +6 -0
- factorly-0.2.1/factorly/__main__.py +8 -0
- {factorly-0.2.0 → factorly-0.2.1}/factorly/cli.py +3 -0
- {factorly-0.2.0 → factorly-0.2.1}/factorly.egg-info/PKG-INFO +23 -21
- {factorly-0.2.0 → factorly-0.2.1}/pyproject.toml +3 -3
- factorly-0.2.0/README.md +0 -70
- factorly-0.2.0/factorly/__init__.py +0 -3
- factorly-0.2.0/factorly/__main__.py +0 -5
- {factorly-0.2.0 → factorly-0.2.1}/factorly.egg-info/SOURCES.txt +0 -0
- {factorly-0.2.0 → factorly-0.2.1}/factorly.egg-info/dependency_links.txt +0 -0
- {factorly-0.2.0 → factorly-0.2.1}/factorly.egg-info/entry_points.txt +0 -0
- {factorly-0.2.0 → factorly-0.2.1}/factorly.egg-info/top_level.txt +0 -0
- {factorly-0.2.0 → factorly-0.2.1}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Security and governance layer for AI agent tool access
|
|
5
|
-
License:
|
|
5
|
+
License: GPL-3.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/factorly-dev/factorly
|
|
7
7
|
Project-URL: Documentation, https://github.com/factorly-dev/factorly/tree/main/docs
|
|
8
8
|
Project-URL: Repository, https://github.com/factorly-dev/factorly
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
|
-
Classifier: License :: OSI Approved ::
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Topic :: Security
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -24,9 +24,15 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
|
|
25
25
|
# Factorly
|
|
26
26
|
|
|
27
|
+
[](https://pypi.org/project/factorly/)
|
|
28
|
+
[](LICENSE)
|
|
29
|
+
[](https://modelcontextprotocol.io)
|
|
30
|
+
[](https://github.com/factorly-dev/factorly)
|
|
31
|
+
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
32
|
+
|
|
27
33
|
One command. All your tools. Credentials stay out of your agent's hands.
|
|
28
34
|
|
|
29
|
-
Factorly
|
|
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.
|
|
30
36
|
|
|
31
37
|
## Install
|
|
32
38
|
|
|
@@ -34,31 +40,27 @@ Factorly sits between your AI agent and the tools it uses. Secrets stay in an en
|
|
|
34
40
|
pip install factorly
|
|
35
41
|
```
|
|
36
42
|
|
|
37
|
-
|
|
43
|
+
## Quick Start
|
|
38
44
|
|
|
39
45
|
```bash
|
|
40
|
-
|
|
41
|
-
|
|
46
|
+
# 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
47
|
+
factorly tools import templates github
|
|
42
48
|
|
|
43
|
-
|
|
49
|
+
# 2. Store your credentials in the encrypted vault
|
|
50
|
+
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
44
51
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
52
|
+
# 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
|
|
53
|
+
factorly sync
|
|
54
|
+
```
|
|
48
55
|
|
|
49
|
-
|
|
50
|
-
factorly wrap -- npx @modelcontextprotocol/server-everything
|
|
56
|
+
The agent never sees your GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
|
|
51
57
|
|
|
52
|
-
|
|
53
|
-
factorly tools import templates github
|
|
54
|
-
```
|
|
58
|
+
## Already Using an MCP Server?
|
|
55
59
|
|
|
56
|
-
|
|
60
|
+
Wrap it with Factorly — no config file needed, no changes to the server:
|
|
57
61
|
|
|
58
62
|
```bash
|
|
59
|
-
factorly
|
|
60
|
-
factorly vault set GITHUB_TOKEN ghp_xxx # store a secret
|
|
61
|
-
factorly sync # connect to Claude Code / Cursor
|
|
63
|
+
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
## What You Get
|
|
@@ -85,4 +87,4 @@ Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/
|
|
|
85
87
|
|
|
86
88
|
## License
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
GPL-3.0
|
factorly-0.2.1/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
```
|
|
2
|
+
░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
|
|
3
|
+
░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
|
|
4
|
+
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
# Factorly
|
|
8
|
+
|
|
9
|
+
[](https://pypi.org/project/factorly/)
|
|
10
|
+
[](LICENSE)
|
|
11
|
+
[](https://modelcontextprotocol.io)
|
|
12
|
+
[](https://github.com/factorly-dev/factorly)
|
|
13
|
+
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
14
|
+
|
|
15
|
+
One command. All your tools. Credentials stay out of your agent's hands.
|
|
16
|
+
|
|
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.
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install factorly
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Quick Start
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
29
|
+
factorly tools import templates github
|
|
30
|
+
|
|
31
|
+
# 2. Store your credentials in the encrypted vault
|
|
32
|
+
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
33
|
+
|
|
34
|
+
# 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
|
|
35
|
+
factorly sync
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
The agent never sees your GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
|
|
39
|
+
|
|
40
|
+
## Already Using an MCP Server?
|
|
41
|
+
|
|
42
|
+
Wrap it with Factorly — no config file needed, no changes to the server:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## What You Get
|
|
49
|
+
|
|
50
|
+
- **Credential isolation** — secrets in encrypted vault, agent never sees them
|
|
51
|
+
- **Governance** — deny, confirm, rate limit, loop detection per tool
|
|
52
|
+
- **Audit log** — every call logged with params, response, and governance outcome
|
|
53
|
+
- **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
|
|
54
|
+
- **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
|
|
55
|
+
|
|
56
|
+
## Supported Platforms
|
|
57
|
+
|
|
58
|
+
| OS | Architecture |
|
|
59
|
+
|----|-------------|
|
|
60
|
+
| Linux | x64 |
|
|
61
|
+
| macOS | x64, arm64 |
|
|
62
|
+
| Windows | x64 |
|
|
63
|
+
|
|
64
|
+
The pip package downloads the pre-built Go binary for your platform on first run.
|
|
65
|
+
|
|
66
|
+
## Documentation
|
|
67
|
+
|
|
68
|
+
Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/factorly)
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
GPL-3.0
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factorly
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Security and governance layer for AI agent tool access
|
|
5
|
-
License:
|
|
5
|
+
License: GPL-3.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/factorly-dev/factorly
|
|
7
7
|
Project-URL: Documentation, https://github.com/factorly-dev/factorly/tree/main/docs
|
|
8
8
|
Project-URL: Repository, https://github.com/factorly-dev/factorly
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
|
-
Classifier: License :: OSI Approved ::
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Topic :: Security
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -24,9 +24,15 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
|
|
25
25
|
# Factorly
|
|
26
26
|
|
|
27
|
+
[](https://pypi.org/project/factorly/)
|
|
28
|
+
[](LICENSE)
|
|
29
|
+
[](https://modelcontextprotocol.io)
|
|
30
|
+
[](https://github.com/factorly-dev/factorly)
|
|
31
|
+
[](https://github.com/factorly-dev/factorly/tree/main/docs)
|
|
32
|
+
|
|
27
33
|
One command. All your tools. Credentials stay out of your agent's hands.
|
|
28
34
|
|
|
29
|
-
Factorly
|
|
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.
|
|
30
36
|
|
|
31
37
|
## Install
|
|
32
38
|
|
|
@@ -34,31 +40,27 @@ Factorly sits between your AI agent and the tools it uses. Secrets stay in an en
|
|
|
34
40
|
pip install factorly
|
|
35
41
|
```
|
|
36
42
|
|
|
37
|
-
|
|
43
|
+
## Quick Start
|
|
38
44
|
|
|
39
45
|
```bash
|
|
40
|
-
|
|
41
|
-
|
|
46
|
+
# 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
|
|
47
|
+
factorly tools import templates github
|
|
42
48
|
|
|
43
|
-
|
|
49
|
+
# 2. Store your credentials in the encrypted vault
|
|
50
|
+
factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
|
|
44
51
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
52
|
+
# 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
|
|
53
|
+
factorly sync
|
|
54
|
+
```
|
|
48
55
|
|
|
49
|
-
|
|
50
|
-
factorly wrap -- npx @modelcontextprotocol/server-everything
|
|
56
|
+
The agent never sees your GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
|
|
51
57
|
|
|
52
|
-
|
|
53
|
-
factorly tools import templates github
|
|
54
|
-
```
|
|
58
|
+
## Already Using an MCP Server?
|
|
55
59
|
|
|
56
|
-
|
|
60
|
+
Wrap it with Factorly — no config file needed, no changes to the server:
|
|
57
61
|
|
|
58
62
|
```bash
|
|
59
|
-
factorly
|
|
60
|
-
factorly vault set GITHUB_TOKEN ghp_xxx # store a secret
|
|
61
|
-
factorly sync # connect to Claude Code / Cursor
|
|
63
|
+
factorly wrap -- npx @modelcontextprotocol/server-github
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
## What You Get
|
|
@@ -85,4 +87,4 @@ Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/
|
|
|
85
87
|
|
|
86
88
|
## License
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
GPL-3.0
|
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "factorly"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Security and governance layer for AI agent tool access"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
license = {text = "
|
|
10
|
+
license = {text = "GPL-3.0"}
|
|
11
11
|
requires-python = ">=3.8"
|
|
12
12
|
classifiers = [
|
|
13
13
|
"Development Status :: 4 - Beta",
|
|
14
|
-
"License :: OSI Approved ::
|
|
14
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
15
15
|
"Programming Language :: Python :: 3",
|
|
16
16
|
"Topic :: Security",
|
|
17
17
|
"Topic :: Software Development :: Libraries",
|
factorly-0.2.0/README.md
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
```
|
|
2
|
-
░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
|
|
3
|
-
░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
|
|
4
|
-
░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
|
|
5
|
-
```
|
|
6
|
-
|
|
7
|
-
# Factorly
|
|
8
|
-
|
|
9
|
-
One command. All your tools. Credentials stay out of your agent's hands.
|
|
10
|
-
|
|
11
|
-
Factorly sits between your AI agent and the tools it uses. Secrets stay in an encrypted vault. Every call is logged. Governance rules control what the agent can do. REST APIs, CLI commands, and MCP servers — one config, one audit log, one set of rules.
|
|
12
|
-
|
|
13
|
-
## Install
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
pip install factorly
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
Or with pipx:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
pipx install factorly
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Try It in 10 Seconds
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
# Run any command with compression + logging
|
|
29
|
-
factorly exec -- git status
|
|
30
|
-
|
|
31
|
-
# Wrap any MCP server with zero config
|
|
32
|
-
factorly wrap -- npx @modelcontextprotocol/server-everything
|
|
33
|
-
|
|
34
|
-
# Install a template for a service you use
|
|
35
|
-
factorly tools import templates github
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## Quick Start
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
factorly init # set up a project
|
|
42
|
-
factorly vault set GITHUB_TOKEN ghp_xxx # store a secret
|
|
43
|
-
factorly sync # connect to Claude Code / Cursor
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
## What You Get
|
|
47
|
-
|
|
48
|
-
- **Credential isolation** — secrets in encrypted vault, agent never sees them
|
|
49
|
-
- **Governance** — deny, confirm, rate limit, loop detection per tool
|
|
50
|
-
- **Audit log** — every call logged with params, response, and governance outcome
|
|
51
|
-
- **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
|
|
52
|
-
- **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
|
|
53
|
-
|
|
54
|
-
## Supported Platforms
|
|
55
|
-
|
|
56
|
-
| OS | Architecture |
|
|
57
|
-
|----|-------------|
|
|
58
|
-
| Linux | x64 |
|
|
59
|
-
| macOS | x64, arm64 |
|
|
60
|
-
| Windows | x64 |
|
|
61
|
-
|
|
62
|
-
The pip package downloads the pre-built Go binary for your platform on first run.
|
|
63
|
-
|
|
64
|
-
## Documentation
|
|
65
|
-
|
|
66
|
-
Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/factorly)
|
|
67
|
-
|
|
68
|
-
## License
|
|
69
|
-
|
|
70
|
-
MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|