aiworkstation-open-source-intelligence 0.3.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.
Files changed (98) hide show
  1. aiworkstation_open_source_intelligence-0.3.0/LICENSE +192 -0
  2. aiworkstation_open_source_intelligence-0.3.0/PKG-INFO +237 -0
  3. aiworkstation_open_source_intelligence-0.3.0/README.md +211 -0
  4. aiworkstation_open_source_intelligence-0.3.0/pyproject.toml +77 -0
  5. aiworkstation_open_source_intelligence-0.3.0/setup.cfg +4 -0
  6. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/PKG-INFO +237 -0
  7. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/SOURCES.txt +96 -0
  8. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/dependency_links.txt +1 -0
  9. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/entry_points.txt +16 -0
  10. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/requires.txt +4 -0
  11. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_open_source_intelligence.egg-info/top_level.txt +1 -0
  12. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/__init__.py +16 -0
  13. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/_version.py +3 -0
  14. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/alpha_bundle.py +225 -0
  15. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/app.py +68 -0
  16. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/cli.py +82 -0
  17. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/codex_acceptance.py +405 -0
  18. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/contract_capture.py +395 -0
  19. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/contracts.py +125 -0
  20. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/endpoint_policy.py +39 -0
  21. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/errors.py +58 -0
  22. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/evidence_manifests.py +226 -0
  23. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/evidence_readiness.py +368 -0
  24. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/fixture_replay.py +261 -0
  25. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/fixture_validation.py +286 -0
  26. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/full_mock_provider.py +66 -0
  27. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/full_radar_provider.py +259 -0
  28. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/full_tools.py +191 -0
  29. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/hosted_access.py +25 -0
  30. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/hosted_evidence_readiness.py +160 -0
  31. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/hosted_http_server.py +91 -0
  32. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/hosted_mcp_server.py +56 -0
  33. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/hosted_public_remote_evidence.py +181 -0
  34. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/http_provider.py +768 -0
  35. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/http_server.py +303 -0
  36. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/mcp_server.py +307 -0
  37. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/plugin_validation.py +314 -0
  38. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/probe.py +225 -0
  39. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/providers.py +251 -0
  40. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/radar_browse_probe.py +177 -0
  41. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/release_identity.py +69 -0
  42. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/release_promotion.py +581 -0
  43. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/release_readiness.py +478 -0
  44. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/remote_smoke.py +297 -0
  45. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/selector_task_transport.py +197 -0
  46. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/strict_http_provider.py +578 -0
  47. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/telemetry.py +121 -0
  48. aiworkstation_open_source_intelligence-0.3.0/src/aiworkstation_osi/tools.py +474 -0
  49. aiworkstation_open_source_intelligence-0.3.0/tests/test_alpha_bundle.py +92 -0
  50. aiworkstation_open_source_intelligence-0.3.0/tests/test_alpha_package_workflow.py +54 -0
  51. aiworkstation_open_source_intelligence-0.3.0/tests/test_app_config.py +49 -0
  52. aiworkstation_open_source_intelligence-0.3.0/tests/test_codex_acceptance.py +135 -0
  53. aiworkstation_open_source_intelligence-0.3.0/tests/test_container_packaging.py +54 -0
  54. aiworkstation_open_source_intelligence-0.3.0/tests/test_contract_capture.py +302 -0
  55. aiworkstation_open_source_intelligence-0.3.0/tests/test_contract_capture_privacy.py +171 -0
  56. aiworkstation_open_source_intelligence-0.3.0/tests/test_contracts.py +48 -0
  57. aiworkstation_open_source_intelligence-0.3.0/tests/test_data_only_product_policy.py +90 -0
  58. aiworkstation_open_source_intelligence-0.3.0/tests/test_evals.py +49 -0
  59. aiworkstation_open_source_intelligence-0.3.0/tests/test_evidence_manifests.py +163 -0
  60. aiworkstation_open_source_intelligence-0.3.0/tests/test_evidence_readiness.py +232 -0
  61. aiworkstation_open_source_intelligence-0.3.0/tests/test_fixture_replay.py +167 -0
  62. aiworkstation_open_source_intelligence-0.3.0/tests/test_fixture_validation.py +169 -0
  63. aiworkstation_open_source_intelligence-0.3.0/tests/test_full_radar_provider.py +236 -0
  64. aiworkstation_open_source_intelligence-0.3.0/tests/test_full_radar_selector_task.py +127 -0
  65. aiworkstation_open_source_intelligence-0.3.0/tests/test_hosted_access.py +27 -0
  66. aiworkstation_open_source_intelligence-0.3.0/tests/test_hosted_evidence_readiness.py +139 -0
  67. aiworkstation_open_source_intelligence-0.3.0/tests/test_hosted_http_server.py +121 -0
  68. aiworkstation_open_source_intelligence-0.3.0/tests/test_hosted_mcp_server.py +61 -0
  69. aiworkstation_open_source_intelligence-0.3.0/tests/test_hosted_public_remote_evidence.py +84 -0
  70. aiworkstation_open_source_intelligence-0.3.0/tests/test_http_provider.py +301 -0
  71. aiworkstation_open_source_intelligence-0.3.0/tests/test_http_server.py +219 -0
  72. aiworkstation_open_source_intelligence-0.3.0/tests/test_live_validation_workflow.py +100 -0
  73. aiworkstation_open_source_intelligence-0.3.0/tests/test_mcp_release_identity.py +29 -0
  74. aiworkstation_open_source_intelligence-0.3.0/tests/test_mcp_server.py +83 -0
  75. aiworkstation_open_source_intelligence-0.3.0/tests/test_plugin_evals.py +75 -0
  76. aiworkstation_open_source_intelligence-0.3.0/tests/test_plugin_package.py +113 -0
  77. aiworkstation_open_source_intelligence-0.3.0/tests/test_plugin_validation.py +134 -0
  78. aiworkstation_open_source_intelligence-0.3.0/tests/test_probe.py +133 -0
  79. aiworkstation_open_source_intelligence-0.3.0/tests/test_provider_boundaries.py +52 -0
  80. aiworkstation_open_source_intelligence-0.3.0/tests/test_public_hosted_compose.py +47 -0
  81. aiworkstation_open_source_intelligence-0.3.0/tests/test_public_hosted_mcp_server.py +62 -0
  82. aiworkstation_open_source_intelligence-0.3.0/tests/test_public_hosted_nginx.py +53 -0
  83. aiworkstation_open_source_intelligence-0.3.0/tests/test_publication_workflows.py +405 -0
  84. aiworkstation_open_source_intelligence-0.3.0/tests/test_radar_browse_probe.py +115 -0
  85. aiworkstation_open_source_intelligence-0.3.0/tests/test_radar_browse_validation_workflow.py +53 -0
  86. aiworkstation_open_source_intelligence-0.3.0/tests/test_release_identity.py +82 -0
  87. aiworkstation_open_source_intelligence-0.3.0/tests/test_release_promotion.py +373 -0
  88. aiworkstation_open_source_intelligence-0.3.0/tests/test_release_readiness.py +124 -0
  89. aiworkstation_open_source_intelligence-0.3.0/tests/test_remote_smoke.py +77 -0
  90. aiworkstation_open_source_intelligence-0.3.0/tests/test_schemas.py +111 -0
  91. aiworkstation_open_source_intelligence-0.3.0/tests/test_selector_task_transport.py +213 -0
  92. aiworkstation_open_source_intelligence-0.3.0/tests/test_skills.py +62 -0
  93. aiworkstation_open_source_intelligence-0.3.0/tests/test_strict_http_provider.py +346 -0
  94. aiworkstation_open_source_intelligence-0.3.0/tests/test_telemetry.py +98 -0
  95. aiworkstation_open_source_intelligence-0.3.0/tests/test_tool_manifest_alignment.py +57 -0
  96. aiworkstation_open_source_intelligence-0.3.0/tests/test_tools.py +218 -0
  97. aiworkstation_open_source_intelligence-0.3.0/tests/test_verified_fact_boundary.py +172 -0
  98. aiworkstation_open_source_intelligence-0.3.0/tests/test_versions.py +36 -0
@@ -0,0 +1,192 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ Copyright 2026 AI Workstation
181
+
182
+ Licensed under the Apache License, Version 2.0 (the "License");
183
+ you may not use this file except in compliance with the License.
184
+ You may obtain a copy of the License at
185
+
186
+ http://www.apache.org/licenses/LICENSE-2.0
187
+
188
+ Unless required by applicable law or agreed to in writing, software
189
+ distributed under the License is distributed on an "AS IS" BASIS,
190
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
191
+ See the License for the specific language governing permissions and
192
+ limitations under the License.
@@ -0,0 +1,237 @@
1
+ Metadata-Version: 2.4
2
+ Name: aiworkstation-open-source-intelligence
3
+ Version: 0.3.0
4
+ Summary: One unified Skill plus read-only MCP tools for evidence-backed open-source AI research and technology selection.
5
+ Author: AI Workstation
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://aiworkstation.cn/githubai/
8
+ Project-URL: Repository, https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence
9
+ Project-URL: Documentation, https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence/blob/main/docs/QUICKSTART.md
10
+ Project-URL: Issues, https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence/issues
11
+ Project-URL: Changelog, https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence/blob/main/CHANGELOG.md
12
+ Keywords: ai,open-source,mcp,rag,agents,technology-selection,license-evidence
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: jsonschema<5,>=4.23
23
+ Provides-Extra: mcp
24
+ Requires-Dist: mcp<3,>=2; extra == "mcp"
25
+ Dynamic: license-file
26
+
27
+ # AI Open Source Intelligence
28
+
29
+ **One Skill. Nine live read-only Radar tools. Evidence-backed open-source AI research without a second server-side model call.**
30
+
31
+ [简体中文](README.zh-CN.md) · [AI Workstation](https://aiworkstation.cn/) · [AI Open Source Radar](https://aiworkstation.cn/githubai/) · [Quickstart](docs/QUICKSTART.md)
32
+
33
+ AI Open Source Intelligence is the Skills/MCP product layer for **AI Open Source Radar**.
34
+
35
+ ## Product shape
36
+
37
+ ```text
38
+ User in ChatGPT / Codex / compatible host
39
+ |
40
+ v
41
+ 1 unified product Skill
42
+ |
43
+ v
44
+ 9 read-only MCP tools
45
+ |
46
+ v
47
+ AI Workstation public Radar
48
+ ```
49
+
50
+ The user does not choose separate research/comparison/stack Skills. The single Skill routes the task internally.
51
+
52
+ The **host model** performs natural-language reasoning and synthesis. The AI Workstation server provides data/evidence only on this product path.
53
+
54
+ ## One active Skill
55
+
56
+ ```text
57
+ ai-open-source-intelligence
58
+ ```
59
+
60
+ It handles:
61
+
62
+ - browsing rankings, collections, categories, scenarios and the Radar Skills library;
63
+ - finding projects from deployment, privacy, integration, budget and license requirements;
64
+ - verifying named-project facts and license evidence;
65
+ - comparing two to five projects for a concrete use case;
66
+ - finding alternatives while preserving hard requirements;
67
+ - planning candidate open-source AI stacks and exposing unverified compatibility.
68
+
69
+ The only product Skill is packaged from:
70
+
71
+ ```text
72
+ product-skills/ai-open-source-intelligence/SKILL.md
73
+ ```
74
+
75
+ The previous split research/comparison/stack Skill files are removed from the current product and distribution bundle.
76
+
77
+ ## Nine standard MCP tools
78
+
79
+ ```text
80
+ search_ai_projects
81
+ get_project_facts
82
+ get_license_evidence
83
+ compare_ai_projects
84
+ find_alternatives
85
+ compose_ai_stack
86
+ get_radar_overview
87
+ browse_radar_projects
88
+ browse_radar_skills
89
+ ```
90
+
91
+ All nine are read-only. They do not execute or install third-party repository code.
92
+
93
+ ## No AI Workstation server-model execution
94
+
95
+ This is a hard product boundary for the current release.
96
+
97
+ The Hosted MCP exposes **no Premium model tool**, no checkout tool and no runtime OAuth/Premium switch. Requirement-based selection calls the public Radar selector with:
98
+
99
+ ```text
100
+ use_model=false
101
+ ```
102
+
103
+ Therefore an ordinary Skill/MCP workflow is:
104
+
105
+ ```text
106
+ ChatGPT/Codex host model
107
+ -> chooses/read tools
108
+ -> AI Workstation public Radar data/evidence
109
+ -> host model synthesizes the final answer
110
+ ```
111
+
112
+ It is **not**:
113
+
114
+ ```text
115
+ host model -> AI Workstation model -> second model bill
116
+ ```
117
+
118
+ If member-linked server-model capabilities are added later, they must ship as a new reviewed product version rather than being enabled through a hidden environment variable.
119
+
120
+ ## Evidence model
121
+
122
+ Every tool result separates:
123
+
124
+ 1. **verified facts** — source-backed observations that crossed the evidence boundary;
125
+ 2. **recommendations** — host-model/rules analysis;
126
+ 3. **unknowns** — unavailable or unverified information;
127
+ 4. **risks** — license, maintenance, deployment, security and integration limits.
128
+
129
+ A value in `data` is not automatically a verified fact. License evidence is deliberately stricter and is technical evidence, not legal advice.
130
+
131
+ ## Official resources in results
132
+
133
+ MCP tool results include canonical, non-tracking publisher links under:
134
+
135
+ ```text
136
+ data.official_resources
137
+ ```
138
+
139
+ with:
140
+
141
+ - AI Workstation — https://aiworkstation.cn/
142
+ - AI Open Source Radar — https://aiworkstation.cn/githubai/
143
+ - this open-source project — https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence
144
+
145
+ The unified Skill may show these once at the end of a normal user-facing answer. They are kept separate from verified facts so publisher attribution never changes a research conclusion.
146
+
147
+ ## Hosted MCP
148
+
149
+ Canonical endpoint:
150
+
151
+ ```text
152
+ https://mcp.aiworkstation.cn/mcp
153
+ ```
154
+
155
+ Current Hosted mode is intentionally:
156
+
157
+ ```text
158
+ anonymous
159
+ read-only
160
+ data-only
161
+ 9 tools
162
+ no OAuth
163
+ no WorkOS dependency
164
+ no Premium/server model
165
+ ```
166
+
167
+ The container stays on host loopback `127.0.0.1:8001` behind Nginx/TLS.
168
+
169
+ ### Anonymous abuse controls
170
+
171
+ The gateway uses two per-IP request windows plus a connection cap:
172
+
173
+ - short-window: `60 requests/minute`, burst `30`;
174
+ - sustained: `10 requests/minute`, burst `300`;
175
+ - concurrent connections: `10` per IP;
176
+ - MCP request body: `256 KB` maximum;
177
+ - unrelated paths on the dedicated MCP hostname return `404`.
178
+
179
+ This is intentionally request-based rather than token-based because the nine data tools do not consume AI Workstation model tokens.
180
+
181
+ ## Local development
182
+
183
+ ```bash
184
+ python -m venv .venv
185
+ source .venv/bin/activate
186
+ python -m pip install -e ".[mcp]"
187
+ ```
188
+
189
+ Offline fixture data:
190
+
191
+ ```bash
192
+ OSI_PROVIDER=mock osi-mcp
193
+ ```
194
+
195
+ Live public Radar data:
196
+
197
+ ```bash
198
+ OSI_PROVIDER=http \
199
+ AIWORKSTATION_RADAR_BASE_URL=https://aiworkstation.cn \
200
+ osi-mcp
201
+ ```
202
+
203
+ Hosted configuration check requires an exact candidate identity:
204
+
205
+ ```bash
206
+ OSI_PROVIDER=http \
207
+ OSI_HOSTED_ACCESS_MODE=public \
208
+ OSI_RELEASE_COMMIT=<exact-40-char-sha> \
209
+ OSI_IMAGE_COMMIT=<same-exact-40-char-sha> \
210
+ osi-mcp-hosted --check-config
211
+ ```
212
+
213
+ Setting `OSI_HOSTED_ACCESS_MODE=oauth` fails closed in the current release.
214
+
215
+ ## Safety rules
216
+
217
+ - never execute third-party repository code as part of research;
218
+ - never infer permission from a missing license;
219
+ - never silently weaken a hard requirement to manufacture a match;
220
+ - never claim cross-project compatibility without evidence or a controlled test;
221
+ - never substitute model memory for unavailable live evidence;
222
+ - never enable AI Workstation server-side model execution in the current standard Skill/MCP path.
223
+
224
+ ## Development checks
225
+
226
+ ```bash
227
+ python -m compileall -q src tests
228
+ python -m unittest discover -s tests -v
229
+ osi-validate-plugin --root .
230
+ osi-readiness --root .
231
+ ```
232
+
233
+ CI covers Python 3.10 and 3.12, deterministic Skill packaging, MCP round trips, data-only Hosted configuration and container packaging.
234
+
235
+ ## License
236
+
237
+ The public repository is licensed under Apache-2.0. That does not grant rights to private AI Workstation databases, unpublished datasets, credentials, infrastructure or trademarks.
@@ -0,0 +1,211 @@
1
+ # AI Open Source Intelligence
2
+
3
+ **One Skill. Nine live read-only Radar tools. Evidence-backed open-source AI research without a second server-side model call.**
4
+
5
+ [简体中文](README.zh-CN.md) · [AI Workstation](https://aiworkstation.cn/) · [AI Open Source Radar](https://aiworkstation.cn/githubai/) · [Quickstart](docs/QUICKSTART.md)
6
+
7
+ AI Open Source Intelligence is the Skills/MCP product layer for **AI Open Source Radar**.
8
+
9
+ ## Product shape
10
+
11
+ ```text
12
+ User in ChatGPT / Codex / compatible host
13
+ |
14
+ v
15
+ 1 unified product Skill
16
+ |
17
+ v
18
+ 9 read-only MCP tools
19
+ |
20
+ v
21
+ AI Workstation public Radar
22
+ ```
23
+
24
+ The user does not choose separate research/comparison/stack Skills. The single Skill routes the task internally.
25
+
26
+ The **host model** performs natural-language reasoning and synthesis. The AI Workstation server provides data/evidence only on this product path.
27
+
28
+ ## One active Skill
29
+
30
+ ```text
31
+ ai-open-source-intelligence
32
+ ```
33
+
34
+ It handles:
35
+
36
+ - browsing rankings, collections, categories, scenarios and the Radar Skills library;
37
+ - finding projects from deployment, privacy, integration, budget and license requirements;
38
+ - verifying named-project facts and license evidence;
39
+ - comparing two to five projects for a concrete use case;
40
+ - finding alternatives while preserving hard requirements;
41
+ - planning candidate open-source AI stacks and exposing unverified compatibility.
42
+
43
+ The only product Skill is packaged from:
44
+
45
+ ```text
46
+ product-skills/ai-open-source-intelligence/SKILL.md
47
+ ```
48
+
49
+ The previous split research/comparison/stack Skill files are removed from the current product and distribution bundle.
50
+
51
+ ## Nine standard MCP tools
52
+
53
+ ```text
54
+ search_ai_projects
55
+ get_project_facts
56
+ get_license_evidence
57
+ compare_ai_projects
58
+ find_alternatives
59
+ compose_ai_stack
60
+ get_radar_overview
61
+ browse_radar_projects
62
+ browse_radar_skills
63
+ ```
64
+
65
+ All nine are read-only. They do not execute or install third-party repository code.
66
+
67
+ ## No AI Workstation server-model execution
68
+
69
+ This is a hard product boundary for the current release.
70
+
71
+ The Hosted MCP exposes **no Premium model tool**, no checkout tool and no runtime OAuth/Premium switch. Requirement-based selection calls the public Radar selector with:
72
+
73
+ ```text
74
+ use_model=false
75
+ ```
76
+
77
+ Therefore an ordinary Skill/MCP workflow is:
78
+
79
+ ```text
80
+ ChatGPT/Codex host model
81
+ -> chooses/read tools
82
+ -> AI Workstation public Radar data/evidence
83
+ -> host model synthesizes the final answer
84
+ ```
85
+
86
+ It is **not**:
87
+
88
+ ```text
89
+ host model -> AI Workstation model -> second model bill
90
+ ```
91
+
92
+ If member-linked server-model capabilities are added later, they must ship as a new reviewed product version rather than being enabled through a hidden environment variable.
93
+
94
+ ## Evidence model
95
+
96
+ Every tool result separates:
97
+
98
+ 1. **verified facts** — source-backed observations that crossed the evidence boundary;
99
+ 2. **recommendations** — host-model/rules analysis;
100
+ 3. **unknowns** — unavailable or unverified information;
101
+ 4. **risks** — license, maintenance, deployment, security and integration limits.
102
+
103
+ A value in `data` is not automatically a verified fact. License evidence is deliberately stricter and is technical evidence, not legal advice.
104
+
105
+ ## Official resources in results
106
+
107
+ MCP tool results include canonical, non-tracking publisher links under:
108
+
109
+ ```text
110
+ data.official_resources
111
+ ```
112
+
113
+ with:
114
+
115
+ - AI Workstation — https://aiworkstation.cn/
116
+ - AI Open Source Radar — https://aiworkstation.cn/githubai/
117
+ - this open-source project — https://github.com/zxhwolfe-dev/aiworkstation-open-source-intelligence
118
+
119
+ The unified Skill may show these once at the end of a normal user-facing answer. They are kept separate from verified facts so publisher attribution never changes a research conclusion.
120
+
121
+ ## Hosted MCP
122
+
123
+ Canonical endpoint:
124
+
125
+ ```text
126
+ https://mcp.aiworkstation.cn/mcp
127
+ ```
128
+
129
+ Current Hosted mode is intentionally:
130
+
131
+ ```text
132
+ anonymous
133
+ read-only
134
+ data-only
135
+ 9 tools
136
+ no OAuth
137
+ no WorkOS dependency
138
+ no Premium/server model
139
+ ```
140
+
141
+ The container stays on host loopback `127.0.0.1:8001` behind Nginx/TLS.
142
+
143
+ ### Anonymous abuse controls
144
+
145
+ The gateway uses two per-IP request windows plus a connection cap:
146
+
147
+ - short-window: `60 requests/minute`, burst `30`;
148
+ - sustained: `10 requests/minute`, burst `300`;
149
+ - concurrent connections: `10` per IP;
150
+ - MCP request body: `256 KB` maximum;
151
+ - unrelated paths on the dedicated MCP hostname return `404`.
152
+
153
+ This is intentionally request-based rather than token-based because the nine data tools do not consume AI Workstation model tokens.
154
+
155
+ ## Local development
156
+
157
+ ```bash
158
+ python -m venv .venv
159
+ source .venv/bin/activate
160
+ python -m pip install -e ".[mcp]"
161
+ ```
162
+
163
+ Offline fixture data:
164
+
165
+ ```bash
166
+ OSI_PROVIDER=mock osi-mcp
167
+ ```
168
+
169
+ Live public Radar data:
170
+
171
+ ```bash
172
+ OSI_PROVIDER=http \
173
+ AIWORKSTATION_RADAR_BASE_URL=https://aiworkstation.cn \
174
+ osi-mcp
175
+ ```
176
+
177
+ Hosted configuration check requires an exact candidate identity:
178
+
179
+ ```bash
180
+ OSI_PROVIDER=http \
181
+ OSI_HOSTED_ACCESS_MODE=public \
182
+ OSI_RELEASE_COMMIT=<exact-40-char-sha> \
183
+ OSI_IMAGE_COMMIT=<same-exact-40-char-sha> \
184
+ osi-mcp-hosted --check-config
185
+ ```
186
+
187
+ Setting `OSI_HOSTED_ACCESS_MODE=oauth` fails closed in the current release.
188
+
189
+ ## Safety rules
190
+
191
+ - never execute third-party repository code as part of research;
192
+ - never infer permission from a missing license;
193
+ - never silently weaken a hard requirement to manufacture a match;
194
+ - never claim cross-project compatibility without evidence or a controlled test;
195
+ - never substitute model memory for unavailable live evidence;
196
+ - never enable AI Workstation server-side model execution in the current standard Skill/MCP path.
197
+
198
+ ## Development checks
199
+
200
+ ```bash
201
+ python -m compileall -q src tests
202
+ python -m unittest discover -s tests -v
203
+ osi-validate-plugin --root .
204
+ osi-readiness --root .
205
+ ```
206
+
207
+ CI covers Python 3.10 and 3.12, deterministic Skill packaging, MCP round trips, data-only Hosted configuration and container packaging.
208
+
209
+ ## License
210
+
211
+ The public repository is licensed under Apache-2.0. That does not grant rights to private AI Workstation databases, unpublished datasets, credentials, infrastructure or trademarks.