factorly 0.1.10__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.
@@ -0,0 +1,90 @@
1
+ Metadata-Version: 2.4
2
+ Name: factorly
3
+ Version: 0.2.1
4
+ Summary: Security and governance layer for AI agent tool access
5
+ License: GPL-3.0
6
+ Project-URL: Homepage, https://github.com/factorly-dev/factorly
7
+ Project-URL: Documentation, https://github.com/factorly-dev/factorly/tree/main/docs
8
+ Project-URL: Repository, https://github.com/factorly-dev/factorly
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Security
13
+ Classifier: Topic :: Software Development :: Libraries
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+
19
+ ```
20
+ ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
21
+ ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
22
+ ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
23
+ ```
24
+
25
+ # Factorly
26
+
27
+ [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
28
+ [![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-green.svg)](LICENSE)
29
+ [![MCP](https://img.shields.io/badge/MCP-compatible-8A2BE2)](https://modelcontextprotocol.io)
30
+ [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
31
+ [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
32
+
33
+ One command. All your tools. Credentials stay out of your agent's hands.
34
+
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.
36
+
37
+ ## Install
38
+
39
+ ```bash
40
+ pip install factorly
41
+ ```
42
+
43
+ ## Quick Start
44
+
45
+ ```bash
46
+ # 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
+ factorly tools import templates github
48
+
49
+ # 2. Store your credentials in the encrypted vault
50
+ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
51
+
52
+ # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
53
+ factorly sync
54
+ ```
55
+
56
+ The agent never sees your GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
57
+
58
+ ## Already Using an MCP Server?
59
+
60
+ Wrap it with Factorly — no config file needed, no changes to the server:
61
+
62
+ ```bash
63
+ factorly wrap -- npx @modelcontextprotocol/server-github
64
+ ```
65
+
66
+ ## What You Get
67
+
68
+ - **Credential isolation** — secrets in encrypted vault, agent never sees them
69
+ - **Governance** — deny, confirm, rate limit, loop detection per tool
70
+ - **Audit log** — every call logged with params, response, and governance outcome
71
+ - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
72
+ - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
73
+
74
+ ## Supported Platforms
75
+
76
+ | OS | Architecture |
77
+ |----|-------------|
78
+ | Linux | x64 |
79
+ | macOS | x64, arm64 |
80
+ | Windows | x64 |
81
+
82
+ The pip package downloads the pre-built Go binary for your platform on first run.
83
+
84
+ ## Documentation
85
+
86
+ Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/factorly)
87
+
88
+ ## License
89
+
90
+ GPL-3.0
@@ -0,0 +1,72 @@
1
+ ```
2
+ ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
3
+ ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
4
+ ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
5
+ ```
6
+
7
+ # Factorly
8
+
9
+ [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
10
+ [![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-green.svg)](LICENSE)
11
+ [![MCP](https://img.shields.io/badge/MCP-compatible-8A2BE2)](https://modelcontextprotocol.io)
12
+ [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
13
+ [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](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
@@ -0,0 +1,6 @@
1
+ # Copyright 2026 Jordan Sherer <hi@jordansherer.com>
2
+ # SPDX-License-Identifier: gpl
3
+
4
+ """Factorly — security and governance layer for AI agent tool access."""
5
+
6
+ __version__ = "0.2.1"
@@ -0,0 +1,8 @@
1
+ # Copyright 2026 Jordan Sherer <hi@jordansherer.com>
2
+ # SPDX-License-Identifier: gpl
3
+
4
+ """Allow running as: python -m factorly"""
5
+
6
+ from factorly.cli import main
7
+
8
+ main()
@@ -1,3 +1,6 @@
1
+ # Copyright 2026 Jordan Sherer <hi@jordansherer.com>
2
+ # SPDX-License-Identifier: gpl
3
+
1
4
  """Factorly CLI wrapper — downloads and runs the Go binary."""
2
5
 
3
6
  import os
@@ -9,7 +12,7 @@ import urllib.request
9
12
 
10
13
  from factorly import __version__
11
14
 
12
- REPO = "factorly-dev/factorly-cli"
15
+ REPO = "factorly-dev/factorly"
13
16
 
14
17
  PLATFORM_MAP = {
15
18
  "Darwin": "darwin",
@@ -0,0 +1,90 @@
1
+ Metadata-Version: 2.4
2
+ Name: factorly
3
+ Version: 0.2.1
4
+ Summary: Security and governance layer for AI agent tool access
5
+ License: GPL-3.0
6
+ Project-URL: Homepage, https://github.com/factorly-dev/factorly
7
+ Project-URL: Documentation, https://github.com/factorly-dev/factorly/tree/main/docs
8
+ Project-URL: Repository, https://github.com/factorly-dev/factorly
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Security
13
+ Classifier: Topic :: Software Development :: Libraries
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+
19
+ ```
20
+ ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
21
+ ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
22
+ ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
23
+ ```
24
+
25
+ # Factorly
26
+
27
+ [![PyPI](https://img.shields.io/pypi/v/factorly)](https://pypi.org/project/factorly/)
28
+ [![License: GPL-3.0](https://img.shields.io/badge/License-GPL--3.0-green.svg)](LICENSE)
29
+ [![MCP](https://img.shields.io/badge/MCP-compatible-8A2BE2)](https://modelcontextprotocol.io)
30
+ [![GitHub](https://img.shields.io/badge/GitHub-factorly-181717?logo=github)](https://github.com/factorly-dev/factorly)
31
+ [![Docs](https://img.shields.io/badge/Docs-docs%2F-informational)](https://github.com/factorly-dev/factorly/tree/main/docs)
32
+
33
+ One command. All your tools. Credentials stay out of your agent's hands.
34
+
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.
36
+
37
+ ## Install
38
+
39
+ ```bash
40
+ pip install factorly
41
+ ```
42
+
43
+ ## Quick Start
44
+
45
+ ```bash
46
+ # 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
+ factorly tools import templates github
48
+
49
+ # 2. Store your credentials in the encrypted vault
50
+ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
51
+
52
+ # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
53
+ factorly sync
54
+ ```
55
+
56
+ The agent never sees your GitHub token. Factorly injected it, made the API call, logged it, and returned the data.
57
+
58
+ ## Already Using an MCP Server?
59
+
60
+ Wrap it with Factorly — no config file needed, no changes to the server:
61
+
62
+ ```bash
63
+ factorly wrap -- npx @modelcontextprotocol/server-github
64
+ ```
65
+
66
+ ## What You Get
67
+
68
+ - **Credential isolation** — secrets in encrypted vault, agent never sees them
69
+ - **Governance** — deny, confirm, rate limit, loop detection per tool
70
+ - **Audit log** — every call logged with params, response, and governance outcome
71
+ - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
72
+ - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
73
+
74
+ ## Supported Platforms
75
+
76
+ | OS | Architecture |
77
+ |----|-------------|
78
+ | Linux | x64 |
79
+ | macOS | x64, arm64 |
80
+ | Windows | x64 |
81
+
82
+ The pip package downloads the pre-built Go binary for your platform on first run.
83
+
84
+ ## Documentation
85
+
86
+ Full docs at [github.com/factorly-dev/factorly](https://github.com/factorly-dev/factorly)
87
+
88
+ ## License
89
+
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.1.10"
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 = "MIT"}
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 :: MIT License",
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",
@@ -23,9 +23,9 @@ classifiers = [
23
23
  factorly = "factorly.cli:main"
24
24
 
25
25
  [project.urls]
26
- Homepage = "https://github.com/factorly-dev/factorly-cli"
27
- Documentation = "https://github.com/factorly-dev/factorly-cli/tree/main/docs"
28
- Repository = "https://github.com/factorly-dev/factorly-cli"
26
+ Homepage = "https://github.com/factorly-dev/factorly"
27
+ Documentation = "https://github.com/factorly-dev/factorly/tree/main/docs"
28
+ Repository = "https://github.com/factorly-dev/factorly"
29
29
 
30
30
  [tool.setuptools.packages.find]
31
31
  include = ["factorly*"]
factorly-0.1.10/PKG-INFO DELETED
@@ -1,88 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: factorly
3
- Version: 0.1.10
4
- Summary: Security and governance layer for AI agent tool access
5
- License: MIT
6
- Project-URL: Homepage, https://github.com/factorly-dev/factorly-cli
7
- Project-URL: Documentation, https://github.com/factorly-dev/factorly-cli/tree/main/docs
8
- Project-URL: Repository, https://github.com/factorly-dev/factorly-cli
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Topic :: Security
13
- Classifier: Topic :: Software Development :: Libraries
14
- Classifier: Environment :: Console
15
- Classifier: Intended Audience :: Developers
16
- Requires-Python: >=3.8
17
- Description-Content-Type: text/markdown
18
-
19
- ```
20
- ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
21
- ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
22
- ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
23
- ```
24
-
25
- # Factorly
26
-
27
- Your agent calls tools. Factorly holds the keys.
28
-
29
- A security and governance layer between AI agents and the tools they use. REST APIs, CLI commands, MCP servers — one config, one audit log, one set of rules.
30
-
31
- ## Install
32
-
33
- ```bash
34
- pip install factorly
35
- ```
36
-
37
- Or with pipx:
38
-
39
- ```bash
40
- pipx install factorly
41
- ```
42
-
43
- ## Try It in 10 Seconds
44
-
45
- ```bash
46
- # Run any command with compression + logging
47
- factorly exec -- git status
48
-
49
- # Wrap any MCP server with zero config
50
- factorly wrap -- npx @modelcontextprotocol/server-everything
51
-
52
- # Install a template for a service you use
53
- factorly tools import templates github
54
- ```
55
-
56
- ## Quick Start
57
-
58
- ```bash
59
- factorly init # set up a project
60
- factorly vault set GITHUB_TOKEN ghp_xxx # store a secret
61
- factorly sync # connect to Claude Code / Cursor
62
- ```
63
-
64
- ## What You Get
65
-
66
- - **Credential isolation** — secrets in encrypted vault, agent never sees them
67
- - **Governance** — deny, confirm, rate limit, loop detection per tool
68
- - **Audit log** — every call logged with params, response, and governance outcome
69
- - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
70
- - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
71
-
72
- ## Supported Platforms
73
-
74
- | OS | Architecture |
75
- |----|-------------|
76
- | Linux | x64 |
77
- | macOS | x64, arm64 |
78
- | Windows | x64 |
79
-
80
- The pip package downloads the pre-built Go binary for your platform on first run.
81
-
82
- ## Documentation
83
-
84
- Full docs at [github.com/factorly-dev/factorly-cli](https://github.com/factorly-dev/factorly-cli)
85
-
86
- ## License
87
-
88
- MIT
factorly-0.1.10/README.md DELETED
@@ -1,70 +0,0 @@
1
- ```
2
- ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
3
- ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
4
- ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
5
- ```
6
-
7
- # Factorly
8
-
9
- Your agent calls tools. Factorly holds the keys.
10
-
11
- A security and governance layer between AI agents and the tools they use. REST APIs, CLI commands, 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-cli](https://github.com/factorly-dev/factorly-cli)
67
-
68
- ## License
69
-
70
- MIT
@@ -1,3 +0,0 @@
1
- """Factorly — security and governance layer for AI agent tool access."""
2
-
3
- __version__ = "0.1.10"
@@ -1,5 +0,0 @@
1
- """Allow running as: python -m factorly"""
2
-
3
- from factorly.cli import main
4
-
5
- main()
@@ -1,88 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: factorly
3
- Version: 0.1.10
4
- Summary: Security and governance layer for AI agent tool access
5
- License: MIT
6
- Project-URL: Homepage, https://github.com/factorly-dev/factorly-cli
7
- Project-URL: Documentation, https://github.com/factorly-dev/factorly-cli/tree/main/docs
8
- Project-URL: Repository, https://github.com/factorly-dev/factorly-cli
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Topic :: Security
13
- Classifier: Topic :: Software Development :: Libraries
14
- Classifier: Environment :: Console
15
- Classifier: Intended Audience :: Developers
16
- Requires-Python: >=3.8
17
- Description-Content-Type: text/markdown
18
-
19
- ```
20
- ░█▀▀░█▀█░█▀▀░▀█▀░█▀█░█▀▄░█░░█░█
21
- ░█▀▀░█▀█░█░░░░█░░█░█░█▀▄░█░░░█░
22
- ░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░▀░
23
- ```
24
-
25
- # Factorly
26
-
27
- Your agent calls tools. Factorly holds the keys.
28
-
29
- A security and governance layer between AI agents and the tools they use. REST APIs, CLI commands, MCP servers — one config, one audit log, one set of rules.
30
-
31
- ## Install
32
-
33
- ```bash
34
- pip install factorly
35
- ```
36
-
37
- Or with pipx:
38
-
39
- ```bash
40
- pipx install factorly
41
- ```
42
-
43
- ## Try It in 10 Seconds
44
-
45
- ```bash
46
- # Run any command with compression + logging
47
- factorly exec -- git status
48
-
49
- # Wrap any MCP server with zero config
50
- factorly wrap -- npx @modelcontextprotocol/server-everything
51
-
52
- # Install a template for a service you use
53
- factorly tools import templates github
54
- ```
55
-
56
- ## Quick Start
57
-
58
- ```bash
59
- factorly init # set up a project
60
- factorly vault set GITHUB_TOKEN ghp_xxx # store a secret
61
- factorly sync # connect to Claude Code / Cursor
62
- ```
63
-
64
- ## What You Get
65
-
66
- - **Credential isolation** — secrets in encrypted vault, agent never sees them
67
- - **Governance** — deny, confirm, rate limit, loop detection per tool
68
- - **Audit log** — every call logged with params, response, and governance outcome
69
- - **36 templates** — pre-built configs for GitHub, Slack, Stripe, Gmail, Linear, and more
70
- - **Zero-config proxy** — `factorly wrap` and `factorly exec` add safety instantly
71
-
72
- ## Supported Platforms
73
-
74
- | OS | Architecture |
75
- |----|-------------|
76
- | Linux | x64 |
77
- | macOS | x64, arm64 |
78
- | Windows | x64 |
79
-
80
- The pip package downloads the pre-built Go binary for your platform on first run.
81
-
82
- ## Documentation
83
-
84
- Full docs at [github.com/factorly-dev/factorly-cli](https://github.com/factorly-dev/factorly-cli)
85
-
86
- ## License
87
-
88
- MIT
File without changes