rubric-studio 0.0.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.
- rubric_studio-0.0.1/.gitignore +270 -0
- rubric_studio-0.0.1/PKG-INFO +28 -0
- rubric_studio-0.0.1/README.md +7 -0
- rubric_studio-0.0.1/pyproject.toml +35 -0
- rubric_studio-0.0.1/requirements-release.txt +1 -0
- rubric_studio-0.0.1/src/rubric_studio/__init__.py +5 -0
- rubric_studio-0.0.1/src/rubric_studio/cli.py +22 -0
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
############################################
|
|
2
|
+
# General
|
|
3
|
+
############################################
|
|
4
|
+
.DS_Store
|
|
5
|
+
Thumbs.db
|
|
6
|
+
|
|
7
|
+
# CC-4 packet-generator demo signing keys (never commit private keys).
|
|
8
|
+
docs/evidence/packets/.signing-key.pem
|
|
9
|
+
docs/evidence/packets/.signing-pubkey.pem
|
|
10
|
+
|
|
11
|
+
*.log
|
|
12
|
+
*.tmp
|
|
13
|
+
*.pid
|
|
14
|
+
logs/
|
|
15
|
+
temp/
|
|
16
|
+
*.swp
|
|
17
|
+
*.swo
|
|
18
|
+
*~
|
|
19
|
+
|
|
20
|
+
# Environment files
|
|
21
|
+
.env
|
|
22
|
+
.env.local
|
|
23
|
+
.env.development
|
|
24
|
+
.env.production
|
|
25
|
+
.env.staging
|
|
26
|
+
.env.test
|
|
27
|
+
.env.*
|
|
28
|
+
!.env.docker.example
|
|
29
|
+
!.env.example
|
|
30
|
+
|
|
31
|
+
############################################
|
|
32
|
+
# Python
|
|
33
|
+
############################################
|
|
34
|
+
__pycache__/
|
|
35
|
+
*.py[cod]
|
|
36
|
+
*.pyo
|
|
37
|
+
*.pyd
|
|
38
|
+
.venv/
|
|
39
|
+
venv/
|
|
40
|
+
env/
|
|
41
|
+
ENV/
|
|
42
|
+
.envrc
|
|
43
|
+
*.egg-info/
|
|
44
|
+
.eggs/
|
|
45
|
+
build/
|
|
46
|
+
dist/
|
|
47
|
+
pip-wheel-metadata/
|
|
48
|
+
.pytest_cache/
|
|
49
|
+
.mypy_cache/
|
|
50
|
+
.pyre/
|
|
51
|
+
.coverage
|
|
52
|
+
coverage.xml
|
|
53
|
+
htmlcov/
|
|
54
|
+
.tox/
|
|
55
|
+
.hypothesis/
|
|
56
|
+
pytest_cache/
|
|
57
|
+
*.db
|
|
58
|
+
*.sqlite3
|
|
59
|
+
*.sqlite
|
|
60
|
+
celerybeat-schedule
|
|
61
|
+
celerybeat.pid
|
|
62
|
+
|
|
63
|
+
############################################
|
|
64
|
+
# Node / TypeScript / Frontend
|
|
65
|
+
############################################
|
|
66
|
+
node_modules/
|
|
67
|
+
npm-debug.log*
|
|
68
|
+
yarn-debug.log*
|
|
69
|
+
yarn-error.log*
|
|
70
|
+
pnpm-debug.log*
|
|
71
|
+
.pnpm-store/
|
|
72
|
+
.qwen/
|
|
73
|
+
.pnpm-debug.log*
|
|
74
|
+
.pnpm/
|
|
75
|
+
dist/
|
|
76
|
+
build/
|
|
77
|
+
.next/
|
|
78
|
+
out/
|
|
79
|
+
.cache/
|
|
80
|
+
coverage/
|
|
81
|
+
.nyc_output/
|
|
82
|
+
.parcel-cache/
|
|
83
|
+
.turbo/
|
|
84
|
+
.eslintcache
|
|
85
|
+
**/.eslintcache
|
|
86
|
+
|
|
87
|
+
# TypeScript build info
|
|
88
|
+
*.tsbuildinfo
|
|
89
|
+
tsconfig.tsbuildinfo
|
|
90
|
+
|
|
91
|
+
# Package managers
|
|
92
|
+
package-lock.json
|
|
93
|
+
yarn.lock
|
|
94
|
+
.yarn/
|
|
95
|
+
.pnp.*
|
|
96
|
+
|
|
97
|
+
############################################
|
|
98
|
+
# Testing
|
|
99
|
+
############################################
|
|
100
|
+
test-results/
|
|
101
|
+
playwright-report/
|
|
102
|
+
playwright-report-*/
|
|
103
|
+
test-reports/
|
|
104
|
+
coverage/
|
|
105
|
+
.nyc_output/
|
|
106
|
+
junit.xml
|
|
107
|
+
*.lcov
|
|
108
|
+
|
|
109
|
+
############################################
|
|
110
|
+
# Editors / IDEs
|
|
111
|
+
############################################
|
|
112
|
+
.vscode/
|
|
113
|
+
!.vscode/settings.json
|
|
114
|
+
!.vscode/tasks.json
|
|
115
|
+
!.vscode/launch.json
|
|
116
|
+
!.vscode/extensions.json
|
|
117
|
+
.idea/
|
|
118
|
+
*.iml
|
|
119
|
+
.history/
|
|
120
|
+
*.sublime-*
|
|
121
|
+
.fleet/
|
|
122
|
+
|
|
123
|
+
############################################
|
|
124
|
+
# Docker / Containers
|
|
125
|
+
############################################
|
|
126
|
+
docker-data/
|
|
127
|
+
*.tar
|
|
128
|
+
.dockerignore
|
|
129
|
+
Dockerfile.local
|
|
130
|
+
|
|
131
|
+
############################################
|
|
132
|
+
# Kubernetes / Helm (generated)
|
|
133
|
+
############################################
|
|
134
|
+
chart/dist/
|
|
135
|
+
helm-dist/
|
|
136
|
+
*.kubeconfig
|
|
137
|
+
kubeconfig*
|
|
138
|
+
|
|
139
|
+
############################################
|
|
140
|
+
# Database & Storage
|
|
141
|
+
############################################
|
|
142
|
+
*.db
|
|
143
|
+
*.sqlite
|
|
144
|
+
*.sqlite3
|
|
145
|
+
data/
|
|
146
|
+
!auraone-website/src/data/
|
|
147
|
+
!auraone-website/src/data/**
|
|
148
|
+
!apps/src/app/\(platform\)/\[orgId\]/labs/**/data/
|
|
149
|
+
!apps/src/app/\(platform\)/\[orgId\]/labs/**/data/**
|
|
150
|
+
!apps/src/data/
|
|
151
|
+
!apps/src/data/**
|
|
152
|
+
postgres-data/
|
|
153
|
+
redis-data/
|
|
154
|
+
elasticsearch-data/
|
|
155
|
+
|
|
156
|
+
############################################
|
|
157
|
+
# Monitoring & Observability
|
|
158
|
+
############################################
|
|
159
|
+
grafana-data/
|
|
160
|
+
prometheus-data/
|
|
161
|
+
jaeger-data/
|
|
162
|
+
|
|
163
|
+
############################################
|
|
164
|
+
# AI/ML
|
|
165
|
+
############################################
|
|
166
|
+
*.pkl
|
|
167
|
+
*.pickle
|
|
168
|
+
*.model
|
|
169
|
+
*.h5
|
|
170
|
+
*.hdf5
|
|
171
|
+
models/
|
|
172
|
+
checkpoints/
|
|
173
|
+
wandb/
|
|
174
|
+
mlruns/
|
|
175
|
+
.neptune/
|
|
176
|
+
|
|
177
|
+
############################################
|
|
178
|
+
# AuraOne Specific
|
|
179
|
+
############################################
|
|
180
|
+
artifacts/
|
|
181
|
+
*.aura
|
|
182
|
+
.robostudio/
|
|
183
|
+
gym-builds/
|
|
184
|
+
template-cache/
|
|
185
|
+
evaluation-artifacts/
|
|
186
|
+
attestation-cache/
|
|
187
|
+
validation-results/
|
|
188
|
+
tmp/
|
|
189
|
+
reports/*
|
|
190
|
+
!reports/no-demo-inventory-baseline.json
|
|
191
|
+
!reports/zero-demo-scan-baseline.json
|
|
192
|
+
|
|
193
|
+
############################################
|
|
194
|
+
# Generated Documentation
|
|
195
|
+
############################################
|
|
196
|
+
docs/_build/
|
|
197
|
+
docs/site/
|
|
198
|
+
*.pdf
|
|
199
|
+
*.epub
|
|
200
|
+
|
|
201
|
+
############################################
|
|
202
|
+
# Backup & Archive
|
|
203
|
+
############################################
|
|
204
|
+
*.bak
|
|
205
|
+
*.backup
|
|
206
|
+
*.old
|
|
207
|
+
*.orig
|
|
208
|
+
*.save
|
|
209
|
+
*.tar.gz
|
|
210
|
+
*.zip
|
|
211
|
+
*.rar
|
|
212
|
+
|
|
213
|
+
# Generated analysis reports
|
|
214
|
+
############################################
|
|
215
|
+
auraone-website/lighthouse-reports/
|
|
216
|
+
|
|
217
|
+
############################################
|
|
218
|
+
# OS Generated
|
|
219
|
+
############################################
|
|
220
|
+
.DS_Store?
|
|
221
|
+
ehthumbs.db
|
|
222
|
+
Icon?
|
|
223
|
+
!opensource/agent-studio-open/desktop/src-tauri/icons/
|
|
224
|
+
!opensource/agent-studio-open/desktop/src-tauri/icons/*
|
|
225
|
+
opensource/agent-studio-open/desktop/src-tauri/target/
|
|
226
|
+
Thumbs.db
|
|
227
|
+
|
|
228
|
+
############################################
|
|
229
|
+
# Recovery Files (Temporary)
|
|
230
|
+
############################################
|
|
231
|
+
recovery_manifests/
|
|
232
|
+
recovery_patches/
|
|
233
|
+
recovery_patches_claude/
|
|
234
|
+
|
|
235
|
+
############################################
|
|
236
|
+
# Build Cache
|
|
237
|
+
############################################
|
|
238
|
+
.buildx-cache/
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
# Factory CLI local artifacts
|
|
242
|
+
.factory/runs/
|
|
243
|
+
.factory/current_run_id
|
|
244
|
+
# optional: keep per-dev settings out of git
|
|
245
|
+
.factory/settings.json
|
|
246
|
+
.vercel
|
|
247
|
+
|
|
248
|
+
############################################
|
|
249
|
+
# Screenshot and evidence images
|
|
250
|
+
docs/evidence/ux/**/*.png
|
|
251
|
+
docs/qa/**/*.png
|
|
252
|
+
tmp-login-debug.png
|
|
253
|
+
|
|
254
|
+
# Build/Cache artifacts
|
|
255
|
+
############################################
|
|
256
|
+
apps/.next/
|
|
257
|
+
apps/.next-*/
|
|
258
|
+
apps/.next-local-platform/
|
|
259
|
+
.next/
|
|
260
|
+
.next-*/
|
|
261
|
+
.next-local-platform/
|
|
262
|
+
.devstack/*.log
|
|
263
|
+
.devstack/*.pid
|
|
264
|
+
build.log
|
|
265
|
+
build-failure.log
|
|
266
|
+
.claude/worktrees/
|
|
267
|
+
.claude/scheduled_tasks.lock
|
|
268
|
+
|
|
269
|
+
# Rust build artifacts (all target/ directories)
|
|
270
|
+
target/
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rubric-studio
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reservation package for the Rubric Studio Open CLI.
|
|
5
|
+
Project-URL: Homepage, https://auraone.ai/open/rubric-studio-open
|
|
6
|
+
Project-URL: Repository, https://github.com/auraoneai/rubric-studio-open
|
|
7
|
+
Project-URL: Issues, https://github.com/auraoneai/rubric-studio-open/issues
|
|
8
|
+
Author-email: AuraOne <opensource@auraone.ai>
|
|
9
|
+
License: MIT
|
|
10
|
+
Keywords: ai,cli,evals,evaluation,rubric
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
|
+
Requires-Python: >=3.11
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# rubric-studio
|
|
23
|
+
|
|
24
|
+
Reserved PyPI package for the Rubric Studio Open CLI.
|
|
25
|
+
|
|
26
|
+
The first public CLI release will install as `rubric` and `rubric-studio`.
|
|
27
|
+
Until then, this package is intentionally minimal so the name cannot be
|
|
28
|
+
squatted before GA.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rubric-studio"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reservation package for the Rubric Studio Open CLI."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "AuraOne", email = "opensource@auraone.ai" }]
|
|
13
|
+
keywords = ["ai", "evaluation", "evals", "rubric", "cli"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://auraone.ai/open/rubric-studio-open"
|
|
27
|
+
Repository = "https://github.com/auraoneai/rubric-studio-open"
|
|
28
|
+
Issues = "https://github.com/auraoneai/rubric-studio-open/issues"
|
|
29
|
+
|
|
30
|
+
[project.scripts]
|
|
31
|
+
rubric-studio = "rubric_studio.cli:main"
|
|
32
|
+
rubric = "rubric_studio.cli:main"
|
|
33
|
+
|
|
34
|
+
[tool.hatch.build.targets.wheel]
|
|
35
|
+
packages = ["src/rubric_studio"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hatchling>=1.25
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Minimal CLI entry point for the PyPI name reservation package."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import argparse
|
|
6
|
+
|
|
7
|
+
from . import __version__
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def main() -> int:
|
|
11
|
+
parser = argparse.ArgumentParser(prog="rubric", description="Rubric Studio Open CLI")
|
|
12
|
+
parser.add_argument("--version", action="store_true", help="print version and exit")
|
|
13
|
+
args = parser.parse_args()
|
|
14
|
+
if args.version:
|
|
15
|
+
print(__version__)
|
|
16
|
+
return 0
|
|
17
|
+
parser.print_help()
|
|
18
|
+
return 0
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if __name__ == "__main__":
|
|
22
|
+
raise SystemExit(main())
|