project-risk-agent 0.2.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.
- project_risk_agent-0.2.0/LICENSE +202 -0
- project_risk_agent-0.2.0/PKG-INFO +267 -0
- project_risk_agent-0.2.0/README.md +232 -0
- project_risk_agent-0.2.0/pyproject.toml +70 -0
- project_risk_agent-0.2.0/setup.cfg +4 -0
- project_risk_agent-0.2.0/src/project_risk_agent/__init__.py +3 -0
- project_risk_agent-0.2.0/src/project_risk_agent/analysis.py +197 -0
- project_risk_agent-0.2.0/src/project_risk_agent/analyzer.py +14 -0
- project_risk_agent-0.2.0/src/project_risk_agent/api.py +86 -0
- project_risk_agent-0.2.0/src/project_risk_agent/brief.py +56 -0
- project_risk_agent-0.2.0/src/project_risk_agent/cli.py +118 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/__init__.py +8 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/base.py +32 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/file.py +53 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/jira.py +102 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/slack.py +77 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/stubs.py +58 -0
- project_risk_agent-0.2.0/src/project_risk_agent/connectors/webhook.py +50 -0
- project_risk_agent-0.2.0/src/project_risk_agent/decisions.py +58 -0
- project_risk_agent-0.2.0/src/project_risk_agent/delta.py +80 -0
- project_risk_agent-0.2.0/src/project_risk_agent/dependencies.py +42 -0
- project_risk_agent-0.2.0/src/project_risk_agent/evidence.py +38 -0
- project_risk_agent-0.2.0/src/project_risk_agent/freshness.py +67 -0
- project_risk_agent-0.2.0/src/project_risk_agent/models.py +66 -0
- project_risk_agent-0.2.0/src/project_risk_agent/prioritizer.py +20 -0
- project_risk_agent-0.2.0/src/project_risk_agent/providers.py +129 -0
- project_risk_agent-0.2.0/src/project_risk_agent/service.py +88 -0
- project_risk_agent-0.2.0/src/project_risk_agent/state.py +55 -0
- project_risk_agent-0.2.0/src/project_risk_agent/temporal.py +45 -0
- project_risk_agent-0.2.0/src/project_risk_agent/trajectory.py +125 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/PKG-INFO +267 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/SOURCES.txt +55 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/dependency_links.txt +1 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/entry_points.txt +2 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/requires.txt +13 -0
- project_risk_agent-0.2.0/src/project_risk_agent.egg-info/top_level.txt +1 -0
- project_risk_agent-0.2.0/tests/test_analysis.py +63 -0
- project_risk_agent-0.2.0/tests/test_analysis_contradictions.py +25 -0
- project_risk_agent-0.2.0/tests/test_analyzer.py +32 -0
- project_risk_agent-0.2.0/tests/test_api.py +50 -0
- project_risk_agent-0.2.0/tests/test_brief.py +47 -0
- project_risk_agent-0.2.0/tests/test_decisions.py +41 -0
- project_risk_agent-0.2.0/tests/test_delta.py +34 -0
- project_risk_agent-0.2.0/tests/test_dependencies.py +29 -0
- project_risk_agent-0.2.0/tests/test_evidence.py +14 -0
- project_risk_agent-0.2.0/tests/test_freshness.py +49 -0
- project_risk_agent-0.2.0/tests/test_jira.py +33 -0
- project_risk_agent-0.2.0/tests/test_prioritizer.py +28 -0
- project_risk_agent-0.2.0/tests/test_providers.py +89 -0
- project_risk_agent-0.2.0/tests/test_recurring_reasoning.py +31 -0
- project_risk_agent-0.2.0/tests/test_service.py +30 -0
- project_risk_agent-0.2.0/tests/test_service_state.py +43 -0
- project_risk_agent-0.2.0/tests/test_slack.py +16 -0
- project_risk_agent-0.2.0/tests/test_state.py +34 -0
- project_risk_agent-0.2.0/tests/test_temporal.py +38 -0
- project_risk_agent-0.2.0/tests/test_trajectory.py +129 -0
- project_risk_agent-0.2.0/tests/test_webhook.py +20 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026 Project Risk Agent contributors
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: project-risk-agent
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: An open-source AI agent for evidence-backed project risk intelligence.
|
|
5
|
+
Author: Project Risk Agent contributors
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/jsconu/project-risk-agent
|
|
8
|
+
Project-URL: Repository, https://github.com/jsconu/project-risk-agent
|
|
9
|
+
Project-URL: Changelog, https://github.com/jsconu/project-risk-agent/blob/main/CHANGELOG.md
|
|
10
|
+
Project-URL: Issues, https://github.com/jsconu/project-risk-agent/issues
|
|
11
|
+
Keywords: project-management,risk-management,ai-agent,llm,jira,slack
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Topic :: Office/Business
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Requires-Python: >=3.11
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: pydantic<3.0,>=2.0
|
|
25
|
+
Provides-Extra: api
|
|
26
|
+
Requires-Dist: fastapi<1.0,>=0.115; extra == "api"
|
|
27
|
+
Requires-Dist: uvicorn<1.0,>=0.30; extra == "api"
|
|
28
|
+
Requires-Dist: httpx<1.0,>=0.27; extra == "api"
|
|
29
|
+
Provides-Extra: openai
|
|
30
|
+
Requires-Dist: openai>=1.0; extra == "openai"
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: pytest>=8.0; extra == "dev"
|
|
33
|
+
Requires-Dist: ruff<0.7,>=0.6; extra == "dev"
|
|
34
|
+
Dynamic: license-file
|
|
35
|
+
|
|
36
|
+
# Project Risk Agent
|
|
37
|
+
|
|
38
|
+
[](https://github.com/jsconu/project-risk-agent/actions/workflows/test.yml)
|
|
39
|
+
[](LICENSE)
|
|
40
|
+
|
|
41
|
+
An open-source AI agent that turns unstructured project information into evidence-backed risks, issues, dependencies, and management decisions.
|
|
42
|
+
|
|
43
|
+
## What it does
|
|
44
|
+
|
|
45
|
+
Project Risk Agent is designed to look across the information that project teams already produce and identify what deserves management attention.
|
|
46
|
+
|
|
47
|
+
It is intentionally **source-agnostic**. Signals can come from project-management systems, email, chat, meeting transcripts, documents, or other systems.
|
|
48
|
+
|
|
49
|
+
The agent should:
|
|
50
|
+
|
|
51
|
+
- identify emerging risks, including risks that are implied rather than explicitly stated
|
|
52
|
+
- distinguish risks, issues, dependencies, and decisions
|
|
53
|
+
- cite the evidence behind each finding
|
|
54
|
+
- preserve source provenance
|
|
55
|
+
- assess likelihood, impact, urgency, and confidence
|
|
56
|
+
- identify when a management decision is required
|
|
57
|
+
- suggest actions without making the decision for the project team
|
|
58
|
+
|
|
59
|
+
## Design principle
|
|
60
|
+
|
|
61
|
+
> Don't just summarize what happened. Identify what may require management attention, show the evidence, and make the reasoning inspectable.
|
|
62
|
+
|
|
63
|
+
## Architecture
|
|
64
|
+
|
|
65
|
+
```text
|
|
66
|
+
Email / Chat / Meetings / PM Tools / Documents
|
|
67
|
+
|
|
|
68
|
+
v
|
|
69
|
+
Source Connectors
|
|
70
|
+
|
|
|
71
|
+
v
|
|
72
|
+
Project Signals
|
|
73
|
+
|
|
|
74
|
+
v
|
|
75
|
+
Risk Intelligence
|
|
76
|
+
Agent
|
|
77
|
+
|
|
|
78
|
+
+-----------+-----------+
|
|
79
|
+
| | |
|
|
80
|
+
Risks Issues Dependencies
|
|
81
|
+
|
|
|
82
|
+
v
|
|
83
|
+
Decisions Needed
|
|
84
|
+
|
|
|
85
|
+
v
|
|
86
|
+
Evidence-backed
|
|
87
|
+
Management Brief
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Connectors normalize source-specific data into a common `ProjectSignal` model. The risk engine does not need to know whether a signal originated in Jira, Monday, Smartsheet, Slack, Teams, Gmail, Outlook, or a meeting transcript.
|
|
91
|
+
|
|
92
|
+
## Run it locally
|
|
93
|
+
|
|
94
|
+
The project has a deterministic, no-API-key baseline so contributors can experiment without a paid model.
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
pip install -e ".[dev]"
|
|
98
|
+
project-risk-agent examples/scenarios/hidden_dependency_risk.json
|
|
99
|
+
project-risk-agent examples/scenarios/hidden_dependency_risk.json --brief
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Optional OpenAI provider
|
|
103
|
+
|
|
104
|
+
The deterministic provider remains the default. To use OpenAI's model-backed reasoning, install the optional dependency, set an API key outside the repository, and choose a model explicitly:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
pip install -e ".[openai]"
|
|
108
|
+
export OPENAI_API_KEY="..."
|
|
109
|
+
project-risk-agent examples/scenarios/hidden_dependency_risk.json --provider openai --model YOUR_MODEL_ID
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
The provider uses the OpenAI Responses API with structured JSON output, validates every response against the existing `Finding` schema, and rejects evidence citations for signals that were not supplied. The API app also accepts any `ModelProvider` through `create_app(provider=...)`, so deployments can opt in without changing the HTTP contract. See the official [Responses API reference](https://developers.openai.com/api/reference/cli/resources/responses/methods/create) for the current API contract.
|
|
113
|
+
|
|
114
|
+
To enable longitudinal project intelligence locally, provide a state file:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
project-risk-agent examples/scenarios/hidden_dependency_risk.json --state .project-risk/state.json
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Run the same command later with updated signals to see material finding changes and whether management attention increased or decreased.
|
|
121
|
+
|
|
122
|
+
Trajectory output reports `new`, `persistent`, `improving`, `deteriorating`, and `stale` active findings. A finding is `resolved` only with fresh, explicitly linked resolution evidence; simply omitting it in a later run never closes it.
|
|
123
|
+
|
|
124
|
+
Explicit decision requests are emitted separately in CLI and API output. Each has a readiness status: `ready`, `missing_owner`, `missing_deadline`, or `missing_owner_and_deadline`. This is an accountability aid for human review; it does not make or execute project decisions.
|
|
125
|
+
|
|
126
|
+
Dependency findings are also emitted as a separate queue. Their status is `blocked`, `waiting`, or `at_risk`, and each item keeps the IDs of its supporting signals.
|
|
127
|
+
|
|
128
|
+
For the HTTP API:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
pip install -e ".[api]"
|
|
132
|
+
uvicorn project_risk_agent.api:app --reload
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
The API exposes `GET /health`, `POST /analyze`, and `POST /brief`. `/analyze` returns structured findings; `/brief` also returns a concise Markdown management brief. Both use the same core service as the CLI.
|
|
136
|
+
|
|
137
|
+
### Try the demo UI
|
|
138
|
+
|
|
139
|
+
With the API running, serve the static demo from the repository root:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
python -m http.server 8001 --directory demo
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Open `http://127.0.0.1:8001` and click **Analyze**. The page uses only synthetic sample data and calls the local API. The API explicitly allows requests from the two localhost origins used by this demo.
|
|
146
|
+
|
|
147
|
+
## Persistent project intelligence
|
|
148
|
+
|
|
149
|
+
The service can retain a local snapshot and compare the next analysis with the previous one. This creates the foundation for an agent that understands **change over time**, rather than repeatedly summarizing the current state from scratch.
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
from project_risk_agent.state import JsonProjectStateStore
|
|
153
|
+
|
|
154
|
+
store = JsonProjectStateStore(".project-risk/state.json")
|
|
155
|
+
result = service.analyze_with_state(signals, store)
|
|
156
|
+
|
|
157
|
+
print("New:", [f.title for f in result.delta.new])
|
|
158
|
+
print("Resolved:", [f.title for f in result.delta.resolved])
|
|
159
|
+
print("Changed:", [c.attention_direction for c in result.changed_findings])
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Continuing findings are compared for material changes in severity, urgency, confidence, ownership, decision state, and recommended actions. The delta reports whether management attention increased or decreased. See `docs/state.md` for the persistence model and privacy considerations.
|
|
163
|
+
|
|
164
|
+
## Evaluation
|
|
165
|
+
|
|
166
|
+
Synthetic evaluations are a first-class development artifact:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
python evaluations/run.py
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
The current suite includes ten scenarios spanning explicit and inferred risks, active issues, dependencies, decisions, resource pressure, scope changes, quality regressions, vendor uncertainty, and false-positive controls. See `docs/evaluations.md`.
|
|
173
|
+
|
|
174
|
+
## Jira Cloud
|
|
175
|
+
|
|
176
|
+
A working Jira Cloud read connector is included for local/personal integrations. Set:
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
export JIRA_BASE_URL="https://your-domain.atlassian.net"
|
|
180
|
+
export JIRA_EMAIL="you@example.com"
|
|
181
|
+
export JIRA_API_TOKEN="..."
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Then use `JiraConnector` to list projects and normalize Jira issues into `ProjectSignal` objects. For a hosted multi-user application, the connector should be extended to Atlassian OAuth 2.0 rather than collecting individual API tokens.
|
|
185
|
+
|
|
186
|
+
## Initial scope
|
|
187
|
+
|
|
188
|
+
The current foundation includes:
|
|
189
|
+
|
|
190
|
+
1. common signal and finding schemas
|
|
191
|
+
2. file/text ingestion for local experimentation
|
|
192
|
+
3. evidence and provenance handling
|
|
193
|
+
4. risk/issue/dependency/decision classification
|
|
194
|
+
5. cross-signal and temporal schedule reasoning
|
|
195
|
+
6. transparent finding prioritization
|
|
196
|
+
7. structured decision-request extraction
|
|
197
|
+
8. executable synthetic evaluation cases
|
|
198
|
+
9. a provider abstraction for deterministic or model-backed reasoning
|
|
199
|
+
10. a minimal FastAPI surface with analysis and management-brief endpoints
|
|
200
|
+
11. persistent local project state and finding-delta detection
|
|
201
|
+
12. longitudinal change detection for continuing findings
|
|
202
|
+
13. a working Jira Cloud read connector
|
|
203
|
+
14. a working Slack read connector
|
|
204
|
+
15. connector templates for additional providers
|
|
205
|
+
16. a lightweight local demo UI
|
|
206
|
+
17. an optional OpenAI Responses API provider with schema and evidence validation
|
|
207
|
+
18. a decision queue that surfaces missing ownership and deadlines
|
|
208
|
+
19. a dependency queue with evidence-linked delivery status
|
|
209
|
+
|
|
210
|
+
Planned production connectors include Monday.com, Smartsheet, Microsoft Teams, Gmail, Outlook, and meeting-transcript sources.
|
|
211
|
+
|
|
212
|
+
Integrations should use official APIs and least-privilege authentication. No connector should require users to surrender credentials to the project itself.
|
|
213
|
+
|
|
214
|
+
## Example finding
|
|
215
|
+
|
|
216
|
+
```json
|
|
217
|
+
{
|
|
218
|
+
"type": "risk",
|
|
219
|
+
"category": "schedule",
|
|
220
|
+
"title": "Integration testing may slip the launch date",
|
|
221
|
+
"description": "The latest updates indicate the dependency is not yet available and testing has already moved once.",
|
|
222
|
+
"likelihood": "high",
|
|
223
|
+
"impact": "high",
|
|
224
|
+
"confidence": 0.86,
|
|
225
|
+
"evidence": [
|
|
226
|
+
{"signal_id": "signal-104", "excerpt": "API delivery moved to Friday"},
|
|
227
|
+
{"signal_id": "signal-117", "excerpt": "Testing cannot start until API is available"}
|
|
228
|
+
],
|
|
229
|
+
"decision_required": true,
|
|
230
|
+
"recommended_actions": [
|
|
231
|
+
"Confirm the dependency owner and committed delivery date",
|
|
232
|
+
"Evaluate a parallel test path or contingency"
|
|
233
|
+
]
|
|
234
|
+
}
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
## Safety and privacy
|
|
238
|
+
|
|
239
|
+
Project data can contain sensitive business information. The project therefore follows these principles:
|
|
240
|
+
|
|
241
|
+
- no telemetry by default
|
|
242
|
+
- secrets supplied through environment/configuration, never source code
|
|
243
|
+
- least-privilege connector scopes
|
|
244
|
+
- provenance for model-derived findings
|
|
245
|
+
- explicit distinction between evidence and inference
|
|
246
|
+
- configurable retention and redaction
|
|
247
|
+
- no autonomous business decisions
|
|
248
|
+
|
|
249
|
+
See `SECURITY.md` for the security model and threat considerations.
|
|
250
|
+
|
|
251
|
+
## Contributing
|
|
252
|
+
|
|
253
|
+
This project is deliberately designed for community improvement. A contributor should be able to add a connector or improve the risk reasoning without understanding the entire codebase.
|
|
254
|
+
|
|
255
|
+
See `CONTRIBUTING.md`, `docs/connectors.md`, `docs/connector-template.md`, and
|
|
256
|
+
`docs/releasing.md` for the release process. Participation is governed by our
|
|
257
|
+
[Code of Conduct](CODE_OF_CONDUCT.md).
|
|
258
|
+
|
|
259
|
+
Evaluations are treated as a first-class part of development. New reasoning behavior should ideally include an evaluation case demonstrating what improved or regressed.
|
|
260
|
+
|
|
261
|
+
## Project status
|
|
262
|
+
|
|
263
|
+
Early development. APIs and schemas may change. Jira and Slack are the first external connectors implemented end-to-end; other provider directories currently contain architectural adapters/templates rather than claimed production integrations.
|
|
264
|
+
|
|
265
|
+
## License
|
|
266
|
+
|
|
267
|
+
Apache-2.0
|