arqera-cli 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.
- arqera_cli-0.2.0/.gitignore +257 -0
- arqera_cli-0.2.0/PKG-INFO +26 -0
- arqera_cli-0.2.0/arqera.py +776 -0
- arqera_cli-0.2.0/arqera_cli/__init__.py +8 -0
- arqera_cli-0.2.0/arqera_cli/cli.py +1341 -0
- arqera_cli-0.2.0/completions/arqera_scaffold.bash +66 -0
- arqera_cli-0.2.0/completions/arqera_scaffold.zsh +58 -0
- arqera_cli-0.2.0/homebrew/README.md +28 -0
- arqera_cli-0.2.0/homebrew/arqera.rb +22 -0
- arqera_cli-0.2.0/pyproject.toml +44 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
# Health reports
|
|
2
|
+
.health-reports/
|
|
3
|
+
|
|
4
|
+
# Model weights and training output (large binary files)
|
|
5
|
+
training_output/
|
|
6
|
+
/models/
|
|
7
|
+
*.safetensors
|
|
8
|
+
*.gguf
|
|
9
|
+
*.bin.index.json
|
|
10
|
+
|
|
11
|
+
# Secrets rotation audit logs
|
|
12
|
+
.rotation-logs/
|
|
13
|
+
|
|
14
|
+
# Elixir (sdk/integrations/continuity-supervisor and any future Elixir apps)
|
|
15
|
+
**/_build/
|
|
16
|
+
**/.elixir_ls/
|
|
17
|
+
**/deps/
|
|
18
|
+
**/*.beam
|
|
19
|
+
|
|
20
|
+
# Go binaries built locally under sdk/integrations/* — keep source, drop artifacts
|
|
21
|
+
sdk/integrations/arq-surface-poll/arq-surface-poll
|
|
22
|
+
sdk/integrations/arq-probe-fabric/arq-probe-fabric
|
|
23
|
+
|
|
24
|
+
# Python
|
|
25
|
+
__pycache__/
|
|
26
|
+
*.py[cod]
|
|
27
|
+
*$py.class
|
|
28
|
+
*.so
|
|
29
|
+
.Python
|
|
30
|
+
.venv/
|
|
31
|
+
**/.venv
|
|
32
|
+
venv/
|
|
33
|
+
ENV/
|
|
34
|
+
.env
|
|
35
|
+
.env.local
|
|
36
|
+
.env.*.local
|
|
37
|
+
*.egg-info/
|
|
38
|
+
dist/
|
|
39
|
+
build/
|
|
40
|
+
!frontend/app/(marketing)/build/
|
|
41
|
+
!frontend/app/(marketing)/build/page.tsx
|
|
42
|
+
.pytest_cache/
|
|
43
|
+
.coverage
|
|
44
|
+
htmlcov/
|
|
45
|
+
.mypy_cache/
|
|
46
|
+
|
|
47
|
+
# Node.js
|
|
48
|
+
node_modules/
|
|
49
|
+
node_modules.bak/
|
|
50
|
+
.next/
|
|
51
|
+
.next-*/
|
|
52
|
+
.next-old/
|
|
53
|
+
.next-broken/
|
|
54
|
+
.next.bak/
|
|
55
|
+
.next*
|
|
56
|
+
out/
|
|
57
|
+
.vercel/
|
|
58
|
+
.open-next/
|
|
59
|
+
*.tsbuildinfo
|
|
60
|
+
|
|
61
|
+
# Cloudflare Workers / Pages local dev
|
|
62
|
+
.dev.vars
|
|
63
|
+
.wrangler/
|
|
64
|
+
npm-debug.log*
|
|
65
|
+
yarn-debug.log*
|
|
66
|
+
yarn-error.log*
|
|
67
|
+
|
|
68
|
+
# Nango custom integrations — local dev artifacts
|
|
69
|
+
nango-integrations/.nango/
|
|
70
|
+
nango-integrations/node_modules/
|
|
71
|
+
nango-integrations/dist/
|
|
72
|
+
nango-integrations/.env
|
|
73
|
+
|
|
74
|
+
# IDEs
|
|
75
|
+
.idea/
|
|
76
|
+
.vscode/
|
|
77
|
+
*.swp
|
|
78
|
+
*.swo
|
|
79
|
+
|
|
80
|
+
# OS
|
|
81
|
+
.DS_Store
|
|
82
|
+
Thumbs.db
|
|
83
|
+
|
|
84
|
+
# Test & Coverage
|
|
85
|
+
coverage/
|
|
86
|
+
playwright-report/
|
|
87
|
+
test-results/
|
|
88
|
+
e2e/.auth/
|
|
89
|
+
.coverage*
|
|
90
|
+
*.coverage*.json
|
|
91
|
+
docs/proof_runs/
|
|
92
|
+
|
|
93
|
+
# Secrets & Credentials
|
|
94
|
+
*.pem
|
|
95
|
+
*.key
|
|
96
|
+
*api_key*.txt
|
|
97
|
+
*secret*.txt
|
|
98
|
+
secrets/
|
|
99
|
+
.queen_credentials.py
|
|
100
|
+
.env.staging
|
|
101
|
+
docs/STAGING_API_CONFIGURATION_PLAN.md
|
|
102
|
+
infrastructure/kubernetes/arqera-platform/STAGING_SECRETS_SETUP.md
|
|
103
|
+
|
|
104
|
+
# Claude
|
|
105
|
+
.claude/
|
|
106
|
+
|
|
107
|
+
# Environment
|
|
108
|
+
.env
|
|
109
|
+
.env.local
|
|
110
|
+
.env.*.local
|
|
111
|
+
.env.fullthrottle
|
|
112
|
+
.env.rotated
|
|
113
|
+
*.env
|
|
114
|
+
.env.backup*
|
|
115
|
+
|
|
116
|
+
# Backups
|
|
117
|
+
backups/
|
|
118
|
+
*.sql.gz
|
|
119
|
+
|
|
120
|
+
# Security reports (only root-level security folder)
|
|
121
|
+
/security/
|
|
122
|
+
|
|
123
|
+
# Docker
|
|
124
|
+
.docker/
|
|
125
|
+
|
|
126
|
+
# Logs
|
|
127
|
+
*.log
|
|
128
|
+
logs/
|
|
129
|
+
*.har
|
|
130
|
+
*_log.txt
|
|
131
|
+
*_logs.txt
|
|
132
|
+
*_error.txt
|
|
133
|
+
*_output.txt
|
|
134
|
+
*Zone.Identifier
|
|
135
|
+
tmp_*.js
|
|
136
|
+
output/
|
|
137
|
+
|
|
138
|
+
# Competitive analysis (screenshots, not for repo)
|
|
139
|
+
Vanta comparison/
|
|
140
|
+
|
|
141
|
+
# Local artifacts (synced to private notes repo)
|
|
142
|
+
Agents_Outputs/
|
|
143
|
+
testing_outputs/
|
|
144
|
+
ui_screenshots/
|
|
145
|
+
|
|
146
|
+
# Database
|
|
147
|
+
*.db
|
|
148
|
+
*.db.failed*
|
|
149
|
+
*.sqlite
|
|
150
|
+
*.rdb
|
|
151
|
+
|
|
152
|
+
# Local documents
|
|
153
|
+
Organisational Frictions Ripe for an AI Workforce Solution.pdf
|
|
154
|
+
PC_Spec.pdf
|
|
155
|
+
|
|
156
|
+
# Binary documents (archived in ~/root/)
|
|
157
|
+
*.docx
|
|
158
|
+
~$*.docx
|
|
159
|
+
|
|
160
|
+
# Marketing/Investor HTML (archived in ~/root/)
|
|
161
|
+
*INVESTOR*.html
|
|
162
|
+
*EXECUTIVE*.html
|
|
163
|
+
*PUBLIC*.html
|
|
164
|
+
the-architect.html
|
|
165
|
+
the-mathematician.html
|
|
166
|
+
the-navigator.html
|
|
167
|
+
|
|
168
|
+
# Env backups
|
|
169
|
+
.env.*.bak
|
|
170
|
+
.env.*.bak.*
|
|
171
|
+
|
|
172
|
+
# Runtime
|
|
173
|
+
backend/runtime/
|
|
174
|
+
backend/runtime_local/
|
|
175
|
+
|
|
176
|
+
# Rust
|
|
177
|
+
target/
|
|
178
|
+
|
|
179
|
+
# Staging deployment scripts with secrets
|
|
180
|
+
scripts/apply-staging-secrets.sh
|
|
181
|
+
scripts/setup-github-secrets.sh
|
|
182
|
+
|
|
183
|
+
# Homelab deploy secrets (generated from template)
|
|
184
|
+
deploy/homelab/secrets.yaml
|
|
185
|
+
|
|
186
|
+
# Training data (generated, not source)
|
|
187
|
+
training_data/
|
|
188
|
+
scripts/data/*.jsonl
|
|
189
|
+
|
|
190
|
+
# Worker-emitted evidence artifacts. The substrate (addressing.arqera.io)
|
|
191
|
+
# holds the canonical signed record via `twin act emit`; the file at
|
|
192
|
+
# substrate/evidence/<kind>/<workload_id>.json is a local convenience copy
|
|
193
|
+
# that the worker rewrites on every execution. The repo doesn't track them.
|
|
194
|
+
substrate/evidence/
|
|
195
|
+
|
|
196
|
+
# Substrate evidence outputs that are regenerated from committed scripts.
|
|
197
|
+
# Commit compact docs/manifests instead unless an artifact is explicitly promoted.
|
|
198
|
+
data/substrate/content-documentation-inventory.json
|
|
199
|
+
data/substrate/cost-evidence-contracts.json
|
|
200
|
+
data/substrate/customer-aware-experience-layer.json
|
|
201
|
+
data/substrate/live-page-readiness-gate.json
|
|
202
|
+
data/substrate/product-experience-pass.json
|
|
203
|
+
data/substrate/public-marketing-sales-workforce.json
|
|
204
|
+
data/substrate/substrate-natural-constraints.json
|
|
205
|
+
data/substrate/ui-page-training-plan.json
|
|
206
|
+
data/substrate/ui-product-route-contracts.json
|
|
207
|
+
data/substrate/ui-training-execution-queue.json
|
|
208
|
+
data/substrate/ui-workforce-inventory.json
|
|
209
|
+
data/substrate/worker-optimization-*.json
|
|
210
|
+
data/substrate/worker-registration-reconciliation.json
|
|
211
|
+
docs/dream/
|
|
212
|
+
docs/plans/*protocol-as-lens-frontend-synthesis*.md
|
|
213
|
+
docs/substrate/PAGE_CONTENT_PRODUCT_BRIEFS.md
|
|
214
|
+
|
|
215
|
+
# Model weights (stored on NFS/OSS, not git)
|
|
216
|
+
/models/
|
|
217
|
+
*.safetensors
|
|
218
|
+
*.gguf
|
|
219
|
+
|
|
220
|
+
# Screenshots and visual artifacts
|
|
221
|
+
Screenshot*.png
|
|
222
|
+
mockups/
|
|
223
|
+
wireframes/
|
|
224
|
+
# Re-allow brand-canonical wireframes + mockups (per arq://body/marketplace_inventory/v1)
|
|
225
|
+
!branding/wireframes/
|
|
226
|
+
!branding/wireframes/**
|
|
227
|
+
!branding/ore/v1/mockups.svg
|
|
228
|
+
|
|
229
|
+
# HAR audit reports
|
|
230
|
+
har-audit-report.json
|
|
231
|
+
|
|
232
|
+
# Git worktrees
|
|
233
|
+
.worktrees/
|
|
234
|
+
|
|
235
|
+
# Codecov binary (download in CI, don't commit)
|
|
236
|
+
codecov
|
|
237
|
+
docs-site/node_modules/
|
|
238
|
+
docs-site/build/
|
|
239
|
+
docs-site/.docusaurus/
|
|
240
|
+
api/openapi.json
|
|
241
|
+
node_modules/
|
|
242
|
+
|
|
243
|
+
# Duh check artifacts
|
|
244
|
+
e2e/reports/duh-check/
|
|
245
|
+
duh-*.png
|
|
246
|
+
.playwright-mcp/
|
|
247
|
+
|
|
248
|
+
# Audit screenshots and artifacts (store externally, not in repo)
|
|
249
|
+
*.png
|
|
250
|
+
!brand/**/*.png
|
|
251
|
+
!banners/**/*.png
|
|
252
|
+
!frontend/**/*.png
|
|
253
|
+
!mobile/**/*.png
|
|
254
|
+
!docs-site/**/*.png
|
|
255
|
+
!docs/screenshots/**/*.png
|
|
256
|
+
.superpowers/
|
|
257
|
+
.warden/
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arqera-cli
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: ARQERA CLI -- AI governance from your terminal
|
|
5
|
+
Project-URL: Homepage, https://arqera.io
|
|
6
|
+
Project-URL: Repository, https://github.com/Arqera-IO/ARQERA
|
|
7
|
+
Project-URL: Documentation, https://docs.arqera.io/sdk/cli
|
|
8
|
+
Author-email: ARQERA <engineering@arqera.io>
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: ai,arqera,cli,compliance,evidence,governance
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Security
|
|
23
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
24
|
+
Requires-Python: >=3.9
|
|
25
|
+
Provides-Extra: streaming
|
|
26
|
+
Requires-Dist: httpx>=0.25.0; extra == 'streaming'
|