CD-76 - CLI Documentation#124
Merged
dborovcanin merged 5 commits intoultravioletrs:mainfrom Jan 27, 2026
Merged
Conversation
SammyOina
requested changes
Sep 3, 2025
docs/cli.md
Outdated
Comment on lines
+80
to
+86
| #### Set Agent Log Level (optional) | ||
|
|
||
| Configures the log level for agent operations: | ||
|
|
||
| ```shell | ||
| export AGENT_LOG_LEVEL=<log_level> # Default: "info" | ||
| ``` |
Comment on lines
+2602
to
+2620
| { | ||
| "algorithm": { | ||
| "type": "python", | ||
| "file": "algorithm.py", | ||
| "requirements": "requirements.txt", | ||
| "args": ["--input=data.csv"] | ||
| }, | ||
| "datasets": [ | ||
| { | ||
| "path": "/data/input.csv", | ||
| "compressed": false | ||
| } | ||
| ], | ||
| "expectedResults": { | ||
| "files": ["output.json"], | ||
| "checksum": "sha3-256-hash" | ||
| } | ||
| } | ||
| ``` |
Contributor
There was a problem hiding this comment.
cocos manifest does not have this structure
docs/cli.md
Outdated
Comment on lines
+2584
to
+2596
| { | ||
| "rootOfTrust": { | ||
| "product": "Milan", | ||
| "cabundlePaths": ["/path/to/ask.pem", "/path/to/ark.pem"], | ||
| "checkCrl": true | ||
| }, | ||
| "policy": { | ||
| "reportData": "base64_encoded_64_bytes", | ||
| "measurement": "base64_encoded_48_bytes", | ||
| "minimumGuestSvn": 1, | ||
| "requireAuthorKey": true | ||
| } | ||
| } |
Contributor
There was a problem hiding this comment.
there are better examples for attestation policy
Comment on lines
+2642
to
+2662
| **TLS Configuration:** | ||
|
|
||
| - Supports TLS 1.2+ for all connections | ||
| - Certificate chain validation | ||
| - CRL (Certificate Revocation List) checking | ||
| - Custom CA certificate support | ||
|
|
||
| **mTLS (Mutual TLS):** | ||
|
|
||
| - Client certificate authentication | ||
| - Automatic certificate renewal | ||
| - Key rotation support | ||
| - Hardware security module integration | ||
|
|
||
| **aTLS (Attested TLS):** | ||
|
|
||
| - TEE attestation during TLS handshake | ||
| - Policy-based connection acceptance | ||
| - Measurement verification | ||
| - Secure key exchange within TEE | ||
|
|
SammyOina
approved these changes
Dec 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What type of PR is this?
This is documentation.
What does this do?
Updates CLI documentation
Which issue(s) does this PR fix/relate to?
Resolves #76
Have you included tests for your changes?
Did you document any new/modified features?
Notes