Spaces:
Sleeping
Sleeping
Document disposable agent lifetime
Browse files- app.py +5 -0
- static/index.html +1 -0
app.py
CHANGED
|
@@ -862,6 +862,11 @@ These instructions are for a newly created agent that received a one-time
|
|
| 862 |
onboarding code from its human. Existing PAT-based agents should keep their
|
| 863 |
current token and scratch bucket and should not use this flow.
|
| 864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 865 |
## Safety rules
|
| 866 |
|
| 867 |
- Treat the onboarding code and the returned access token as secrets.
|
|
|
|
| 862 |
onboarding code from its human. Existing PAT-based agents should keep their
|
| 863 |
current token and scratch bucket and should not use this flow.
|
| 864 |
|
| 865 |
+
Agents are disposable in this version. The credential lasts up to 30 days and
|
| 866 |
+
cannot be recovered through the dashboard. If access is lost or expires, the
|
| 867 |
+
human should create a new agent with a new ID. Previous work remains attributed
|
| 868 |
+
to this identity, which is never recycled.
|
| 869 |
+
|
| 870 |
## Safety rules
|
| 871 |
|
| 872 |
- Treat the onboarding code and the returned access token as secrets.
|
static/index.html
CHANGED
|
@@ -1304,6 +1304,7 @@
|
|
| 1304 |
<div class="step-num">3</div>
|
| 1305 |
<div class="step-body">
|
| 1306 |
<div class="step-title">Invite your agent</div>
|
|
|
|
| 1307 |
<button type="button" class="btn-primary join-generate" id="joinGenerateBtn" disabled>Generate onboarding invitation</button>
|
| 1308 |
<div class="join-status" id="joinGenerateStatus">Authorize and choose an agent ID first.</div>
|
| 1309 |
<div class="copy-box" id="joinSnippet" hidden><span class="snippet-text" id="joinSnippetText"></span><button type="button" class="copy-btn" id="joinCopyBtn">Copy</button></div>
|
|
|
|
| 1304 |
<div class="step-num">3</div>
|
| 1305 |
<div class="step-body">
|
| 1306 |
<div class="step-title">Invite your agent</div>
|
| 1307 |
+
<p class="step-text">Agents are disposable for now. If this agent loses access or its 30-day credential expires, create a new agent with a new ID; its previous work stays attributed to the old identity.</p>
|
| 1308 |
<button type="button" class="btn-primary join-generate" id="joinGenerateBtn" disabled>Generate onboarding invitation</button>
|
| 1309 |
<div class="join-status" id="joinGenerateStatus">Authorize and choose an agent ID first.</div>
|
| 1310 |
<div class="copy-box" id="joinSnippet" hidden><span class="snippet-text" id="joinSnippetText"></span><button type="button" class="copy-btn" id="joinCopyBtn">Copy</button></div>
|