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.
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Security and governance layer for AI agent tool access
5
- License: MIT
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 :: MIT License
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
+ [![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
+
27
33
  One command. All your tools. Credentials stay out of your agent's hands.
28
34
 
29
- 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.
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
- Or with pipx:
43
+ ## Quick Start
38
44
 
39
45
  ```bash
40
- pipx install factorly
41
- ```
46
+ # 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
+ factorly tools import templates github
42
48
 
43
- ## Try It in 10 Seconds
49
+ # 2. Store your credentials in the encrypted vault
50
+ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
44
51
 
45
- ```bash
46
- # Run any command with compression + logging
47
- factorly exec -- git status
52
+ # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
53
+ factorly sync
54
+ ```
48
55
 
49
- # Wrap any MCP server with zero config
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
- # Install a template for a service you use
53
- factorly tools import templates github
54
- ```
58
+ ## Already Using an MCP Server?
55
59
 
56
- ## Quick Start
60
+ Wrap it with Factorly — no config file needed, no changes to the server:
57
61
 
58
62
  ```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
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
- MIT
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
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: factorly
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Security and governance layer for AI agent tool access
5
- License: MIT
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 :: MIT License
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
+ [![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
+
27
33
  One command. All your tools. Credentials stay out of your agent's hands.
28
34
 
29
- 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.
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
- Or with pipx:
43
+ ## Quick Start
38
44
 
39
45
  ```bash
40
- pipx install factorly
41
- ```
46
+ # 1. Install a template (36 services: GitHub, Slack, Stripe, Linear, Gmail, ...)
47
+ factorly tools import templates github
42
48
 
43
- ## Try It in 10 Seconds
49
+ # 2. Store your credentials in the encrypted vault
50
+ factorly vault set GITHUB_TOKEN ghp_xxxxxxxxxxxx
44
51
 
45
- ```bash
46
- # Run any command with compression + logging
47
- factorly exec -- git status
52
+ # 3. Connect to your agent (auto-detects Claude Code, Cursor, Codex)
53
+ factorly sync
54
+ ```
48
55
 
49
- # Wrap any MCP server with zero config
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
- # Install a template for a service you use
53
- factorly tools import templates github
54
- ```
58
+ ## Already Using an MCP Server?
55
59
 
56
- ## Quick Start
60
+ Wrap it with Factorly — no config file needed, no changes to the server:
57
61
 
58
62
  ```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
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
- MIT
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.0"
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",
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
@@ -1,3 +0,0 @@
1
- """Factorly — security and governance layer for AI agent tool access."""
2
-
3
- __version__ = "0.2.0"
@@ -1,5 +0,0 @@
1
- """Allow running as: python -m factorly"""
2
-
3
- from factorly.cli import main
4
-
5
- main()
File without changes