pm-os 3.1.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.
- pm_os-3.1.0/.gitignore +51 -0
- pm_os-3.1.0/PKG-INFO +113 -0
- pm_os-3.1.0/README.md +51 -0
- pm_os-3.1.0/VERSION +1 -0
- pm_os-3.1.0/pyproject.toml +105 -0
- pm_os-3.1.0/src/pm_os/__init__.py +13 -0
- pm_os-3.1.0/src/pm_os/cli.py +1030 -0
- pm_os-3.1.0/src/pm_os/help_topics.py +210 -0
- pm_os-3.1.0/src/pm_os/wizard/__init__.py +10 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/__init__.py +28 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/base.py +198 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/confluence_sync.py +294 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/github_sync.py +383 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/google_sync.py +320 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/jira_sync.py +399 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/schema.py +225 -0
- pm_os-3.1.0/src/pm_os/wizard/brain_sync/slack_sync.py +347 -0
- pm_os-3.1.0/src/pm_os/wizard/credential_testers.py +436 -0
- pm_os-3.1.0/src/pm_os/wizard/exceptions.py +217 -0
- pm_os-3.1.0/src/pm_os/wizard/git_utils.py +64 -0
- pm_os-3.1.0/src/pm_os/wizard/logging_config.py +147 -0
- pm_os-3.1.0/src/pm_os/wizard/orchestrator.py +471 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/__init__.py +86 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/brain_population.py +367 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/directories.py +459 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/integrations.py +328 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/llm_provider.py +295 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/prerequisites.py +181 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/profile.py +237 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/verification.py +185 -0
- pm_os-3.1.0/src/pm_os/wizard/steps/welcome.py +77 -0
- pm_os-3.1.0/src/pm_os/wizard/ui.py +429 -0
- pm_os-3.1.0/src/pm_os/wizard/validators.py +290 -0
pm_os-3.1.0/.gitignore
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Credentials and secrets
|
|
2
|
+
.env
|
|
3
|
+
*.token.json
|
|
4
|
+
token.json
|
|
5
|
+
client_secret*.json
|
|
6
|
+
credentials.json
|
|
7
|
+
.secrets/
|
|
8
|
+
|
|
9
|
+
# Python
|
|
10
|
+
__pycache__/
|
|
11
|
+
*.pyc
|
|
12
|
+
*.pyo
|
|
13
|
+
.venv/
|
|
14
|
+
venv/
|
|
15
|
+
*.egg-info/
|
|
16
|
+
|
|
17
|
+
# IDE
|
|
18
|
+
.vscode/
|
|
19
|
+
.idea/
|
|
20
|
+
*.swp
|
|
21
|
+
*.swo
|
|
22
|
+
|
|
23
|
+
# OS
|
|
24
|
+
.DS_Store
|
|
25
|
+
Thumbs.db
|
|
26
|
+
Desktop.ini
|
|
27
|
+
|
|
28
|
+
# Logs
|
|
29
|
+
*.log
|
|
30
|
+
logs/
|
|
31
|
+
|
|
32
|
+
# Local state (recreated by tools)
|
|
33
|
+
AI_Guidance/Tools/daily_context/state.json
|
|
34
|
+
AI_Guidance/Tools/meeting_prep/config.json
|
|
35
|
+
AI_Guidance/Tools/jira_mcp/config.json
|
|
36
|
+
tools/daily_context/state.json
|
|
37
|
+
|
|
38
|
+
# Synced developer commands (copied by command_sync.py at runtime)
|
|
39
|
+
.claude/commands/.sync-manifest.json
|
|
40
|
+
.claude/commands/bd-*.md
|
|
41
|
+
.claude/commands/boot-dev.md
|
|
42
|
+
.claude/commands/preflight.md
|
|
43
|
+
.claude/commands/*-roadmap*.md
|
|
44
|
+
|
|
45
|
+
# Backup files
|
|
46
|
+
*.bak
|
|
47
|
+
*.backup
|
|
48
|
+
*~
|
|
49
|
+
|
|
50
|
+
# Distribution packages (keep separately)
|
|
51
|
+
# PM-OS_v*.zip
|
pm_os-3.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pm-os
|
|
3
|
+
Version: 3.1.0
|
|
4
|
+
Summary: PM-OS: AI-powered Product Management Operating System
|
|
5
|
+
Project-URL: Homepage, https://github.com/hellofresh/hf-pm-os
|
|
6
|
+
Project-URL: Documentation, https://pm-os.dev/docs
|
|
7
|
+
Project-URL: Repository, https://github.com/hellofresh/hf-pm-os
|
|
8
|
+
Author: PM-OS Team
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: ai,claude,llm,pm,product-management
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Requires-Dist: click>=8.0.0
|
|
24
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
25
|
+
Requires-Dist: pyyaml>=6.0
|
|
26
|
+
Requires-Dist: requests>=2.28.0
|
|
27
|
+
Requires-Dist: rich>=13.0.0
|
|
28
|
+
Provides-Extra: ai
|
|
29
|
+
Requires-Dist: anthropic>=0.18.0; extra == 'ai'
|
|
30
|
+
Requires-Dist: google-generativeai>=0.8.0; extra == 'ai'
|
|
31
|
+
Provides-Extra: all
|
|
32
|
+
Requires-Dist: anthropic>=0.18.0; extra == 'all'
|
|
33
|
+
Requires-Dist: atlassian-python-api>=3.0.0; extra == 'all'
|
|
34
|
+
Requires-Dist: boto3>=1.28.0; extra == 'all'
|
|
35
|
+
Requires-Dist: google-api-python-client>=2.0.0; extra == 'all'
|
|
36
|
+
Requires-Dist: google-auth-oauthlib>=1.0.0; extra == 'all'
|
|
37
|
+
Requires-Dist: google-auth>=2.0.0; extra == 'all'
|
|
38
|
+
Requires-Dist: google-generativeai>=0.8.0; extra == 'all'
|
|
39
|
+
Requires-Dist: jira>=3.5.0; extra == 'all'
|
|
40
|
+
Requires-Dist: pygithub>=1.59.0; extra == 'all'
|
|
41
|
+
Requires-Dist: slack-sdk>=3.0.0; extra == 'all'
|
|
42
|
+
Provides-Extra: bedrock
|
|
43
|
+
Requires-Dist: boto3>=1.28.0; extra == 'bedrock'
|
|
44
|
+
Provides-Extra: confluence
|
|
45
|
+
Requires-Dist: atlassian-python-api>=3.0.0; extra == 'confluence'
|
|
46
|
+
Provides-Extra: dev
|
|
47
|
+
Requires-Dist: black>=23.0.0; extra == 'dev'
|
|
48
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
49
|
+
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
50
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
51
|
+
Provides-Extra: github
|
|
52
|
+
Requires-Dist: pygithub>=1.59.0; extra == 'github'
|
|
53
|
+
Provides-Extra: google
|
|
54
|
+
Requires-Dist: google-api-python-client>=2.0.0; extra == 'google'
|
|
55
|
+
Requires-Dist: google-auth-oauthlib>=1.0.0; extra == 'google'
|
|
56
|
+
Requires-Dist: google-auth>=2.0.0; extra == 'google'
|
|
57
|
+
Provides-Extra: jira
|
|
58
|
+
Requires-Dist: jira>=3.5.0; extra == 'jira'
|
|
59
|
+
Provides-Extra: slack
|
|
60
|
+
Requires-Dist: slack-sdk>=3.0.0; extra == 'slack'
|
|
61
|
+
Description-Content-Type: text/markdown
|
|
62
|
+
|
|
63
|
+
# PM-OS
|
|
64
|
+
|
|
65
|
+
**AI-powered Product Management Operating System**
|
|
66
|
+
|
|
67
|
+
PM-OS is a comprehensive workflow system for Product Managers, integrating with Jira, Slack, GitHub, Google Workspace, and LLM providers to streamline daily work.
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
# Basic installation
|
|
73
|
+
pip install pm-os
|
|
74
|
+
|
|
75
|
+
# With specific integrations
|
|
76
|
+
pip install pm-os[slack] # Slack integration
|
|
77
|
+
pip install pm-os[jira] # Jira integration
|
|
78
|
+
pip install pm-os[google] # Google Workspace
|
|
79
|
+
pip install pm-os[github] # GitHub integration
|
|
80
|
+
pip install pm-os[bedrock] # AWS Bedrock LLM
|
|
81
|
+
|
|
82
|
+
# All integrations
|
|
83
|
+
pip install pm-os[all]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Quick Start
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
# Initialize PM-OS (guided wizard)
|
|
90
|
+
pm-os init
|
|
91
|
+
|
|
92
|
+
# Check installation health
|
|
93
|
+
pm-os doctor
|
|
94
|
+
|
|
95
|
+
# Update to latest version
|
|
96
|
+
pm-os update
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
## Features
|
|
100
|
+
|
|
101
|
+
- **Guided Installation**: Interactive wizard configures everything
|
|
102
|
+
- **Daily Context Sync**: Aggregates Jira, Slack, Calendar, GitHub
|
|
103
|
+
- **Brain Knowledge Graph**: Entities, relationships, semantic search
|
|
104
|
+
- **Session Management**: Context preservation across sessions
|
|
105
|
+
- **Integration Hub**: Connects all your PM tools
|
|
106
|
+
|
|
107
|
+
## Documentation
|
|
108
|
+
|
|
109
|
+
See the [full documentation](https://pm-os.dev/docs) for detailed guides.
|
|
110
|
+
|
|
111
|
+
## License
|
|
112
|
+
|
|
113
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
pm_os-3.1.0/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# PM-OS
|
|
2
|
+
|
|
3
|
+
**AI-powered Product Management Operating System**
|
|
4
|
+
|
|
5
|
+
PM-OS is a comprehensive workflow system for Product Managers, integrating with Jira, Slack, GitHub, Google Workspace, and LLM providers to streamline daily work.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Basic installation
|
|
11
|
+
pip install pm-os
|
|
12
|
+
|
|
13
|
+
# With specific integrations
|
|
14
|
+
pip install pm-os[slack] # Slack integration
|
|
15
|
+
pip install pm-os[jira] # Jira integration
|
|
16
|
+
pip install pm-os[google] # Google Workspace
|
|
17
|
+
pip install pm-os[github] # GitHub integration
|
|
18
|
+
pip install pm-os[bedrock] # AWS Bedrock LLM
|
|
19
|
+
|
|
20
|
+
# All integrations
|
|
21
|
+
pip install pm-os[all]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Quick Start
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Initialize PM-OS (guided wizard)
|
|
28
|
+
pm-os init
|
|
29
|
+
|
|
30
|
+
# Check installation health
|
|
31
|
+
pm-os doctor
|
|
32
|
+
|
|
33
|
+
# Update to latest version
|
|
34
|
+
pm-os update
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Features
|
|
38
|
+
|
|
39
|
+
- **Guided Installation**: Interactive wizard configures everything
|
|
40
|
+
- **Daily Context Sync**: Aggregates Jira, Slack, Calendar, GitHub
|
|
41
|
+
- **Brain Knowledge Graph**: Entities, relationships, semantic search
|
|
42
|
+
- **Session Management**: Context preservation across sessions
|
|
43
|
+
- **Integration Hub**: Connects all your PM tools
|
|
44
|
+
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
See the [full documentation](https://pm-os.dev/docs) for detailed guides.
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
pm_os-3.1.0/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.1.0
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pm-os"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "PM-OS: AI-powered Product Management Operating System"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "PM-OS Team"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["pm", "product-management", "ai", "claude", "llm"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Environment :: Console",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
dependencies = [
|
|
31
|
+
"pyyaml>=6.0",
|
|
32
|
+
"python-dotenv>=1.0.0",
|
|
33
|
+
"requests>=2.28.0",
|
|
34
|
+
"click>=8.0.0",
|
|
35
|
+
"rich>=13.0.0",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[project.optional-dependencies]
|
|
39
|
+
google = [
|
|
40
|
+
"google-api-python-client>=2.0.0",
|
|
41
|
+
"google-auth>=2.0.0",
|
|
42
|
+
"google-auth-oauthlib>=1.0.0",
|
|
43
|
+
]
|
|
44
|
+
slack = ["slack-sdk>=3.0.0"]
|
|
45
|
+
jira = ["jira>=3.5.0"]
|
|
46
|
+
github = ["PyGithub>=1.59.0"]
|
|
47
|
+
confluence = ["atlassian-python-api>=3.0.0"]
|
|
48
|
+
ai = [
|
|
49
|
+
"anthropic>=0.18.0",
|
|
50
|
+
"google-generativeai>=0.8.0",
|
|
51
|
+
]
|
|
52
|
+
bedrock = [
|
|
53
|
+
"boto3>=1.28.0",
|
|
54
|
+
]
|
|
55
|
+
all = [
|
|
56
|
+
"pm-os[google,slack,jira,github,confluence,ai,bedrock]"
|
|
57
|
+
]
|
|
58
|
+
dev = [
|
|
59
|
+
"pytest>=7.0.0",
|
|
60
|
+
"pytest-cov>=4.0.0",
|
|
61
|
+
"black>=23.0.0",
|
|
62
|
+
"ruff>=0.1.0",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[project.scripts]
|
|
66
|
+
pm-os = "pm_os.cli:main"
|
|
67
|
+
pmos = "pm_os.cli:main"
|
|
68
|
+
|
|
69
|
+
[project.urls]
|
|
70
|
+
Homepage = "https://github.com/hellofresh/hf-pm-os"
|
|
71
|
+
Documentation = "https://pm-os.dev/docs"
|
|
72
|
+
Repository = "https://github.com/hellofresh/hf-pm-os"
|
|
73
|
+
|
|
74
|
+
[tool.hatch.version]
|
|
75
|
+
path = "VERSION"
|
|
76
|
+
pattern = "(?P<version>.+)"
|
|
77
|
+
|
|
78
|
+
[tool.hatch.build.targets.wheel]
|
|
79
|
+
packages = ["src/pm_os"]
|
|
80
|
+
|
|
81
|
+
[tool.hatch.build.targets.sdist]
|
|
82
|
+
include = [
|
|
83
|
+
"src/pm_os/**/*.py",
|
|
84
|
+
"src/pm_os/**/*.yaml",
|
|
85
|
+
"src/pm_os/**/*.json",
|
|
86
|
+
"src/pm_os/**/*.md",
|
|
87
|
+
"src/pm_os/templates/*",
|
|
88
|
+
"VERSION",
|
|
89
|
+
"README.md",
|
|
90
|
+
"LICENSE",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[tool.black]
|
|
94
|
+
line-length = 100
|
|
95
|
+
target-version = ["py310", "py311", "py312"]
|
|
96
|
+
|
|
97
|
+
[tool.ruff]
|
|
98
|
+
line-length = 100
|
|
99
|
+
select = ["E", "F", "W", "I", "N", "UP", "B", "C4"]
|
|
100
|
+
ignore = ["E501"]
|
|
101
|
+
|
|
102
|
+
[tool.pytest.ini_options]
|
|
103
|
+
testpaths = ["tests"]
|
|
104
|
+
python_files = ["test_*.py"]
|
|
105
|
+
python_functions = ["test_*"]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
PM-OS: AI-powered Product Management Operating System
|
|
3
|
+
|
|
4
|
+
A comprehensive workflow system for Product Managers.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
try:
|
|
8
|
+
from importlib.metadata import version
|
|
9
|
+
__version__ = version("pm-os")
|
|
10
|
+
except Exception:
|
|
11
|
+
__version__ = "0.0.0" # Fallback for development
|
|
12
|
+
|
|
13
|
+
__all__ = ["__version__"]
|