Spaces:
Runtime error
Runtime error
Add transparent prototype status and vision note to front page
Browse files
app.py
CHANGED
|
@@ -473,6 +473,45 @@ with gr.Blocks(css=custom_css, title="ARI Tool Builder") as app:
|
|
| 473 |
---
|
| 474 |
""")
|
| 475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 476 |
with gr.Tabs():
|
| 477 |
|
| 478 |
# Tab 1: Tool Builder
|
|
|
|
| 473 |
---
|
| 474 |
""")
|
| 475 |
|
| 476 |
+
with gr.Accordion("About This Prototype + Vision", open=False):
|
| 477 |
+
gr.Markdown("""
|
| 478 |
+
### What This Is
|
| 479 |
+
|
| 480 |
+
This is a **working prototype** of a "Cline for Mental Health" — a platform where clinicians can vibe-code
|
| 481 |
+
their own AI tools using natural language, with relational ethics baked into the infrastructure.
|
| 482 |
+
|
| 483 |
+
**What exists now:**
|
| 484 |
+
- ARI Engine system prompt (the ethical infrastructure)
|
| 485 |
+
- Tool Builder interface (describe your tool → generate architecture)
|
| 486 |
+
- Preview mode (test the generated tool)
|
| 487 |
+
- Export (copy system prompt for use in ChatGPT, Claude, etc.)
|
| 488 |
+
|
| 489 |
+
**What's missing for true vibe-coding:**
|
| 490 |
+
- **Dynamic deployment** — Tool lives on the platform, not copy-pasted elsewhere
|
| 491 |
+
- **Shareable client links** — Client gets a URL, no ChatGPT account needed
|
| 492 |
+
- **Clinician dashboard** — See/manage/iterate on created tools
|
| 493 |
+
|
| 494 |
+
### The Vision
|
| 495 |
+
|
| 496 |
+
Imagine: A therapist describes a between-session tool in plain language. The platform generates it with
|
| 497 |
+
ARI guardrails embedded. One click deploys it. The therapist texts a link to their client. Done.
|
| 498 |
+
|
| 499 |
+
No code. No prompt engineering. No ChatGPT accounts for clients. Just clinician-configured,
|
| 500 |
+
ethically-grounded tools that extend the therapeutic relationship into the spaces between sessions.
|
| 501 |
+
|
| 502 |
+
### Help Build This
|
| 503 |
+
|
| 504 |
+
This prototype demonstrates what's possible. The next phase requires resources to build
|
| 505 |
+
production infrastructure — hosting, authentication, clinician accounts, client-facing deployment.
|
| 506 |
+
|
| 507 |
+
**If you're interested in funding, collaborating, or piloting this work:**
|
| 508 |
+
|
| 509 |
+
Jocelyn Skillman, LMHC — [jostlebot on HuggingFace](https://huggingface.co/jostlebot) |
|
| 510 |
+
[Substack](https://jocelynskillman.substack.com) | [LinkedIn](https://linkedin.com/in/jocelynskillman)
|
| 511 |
+
|
| 512 |
+
*This is infrastructure for connection — relational architecture that serves the human field.*
|
| 513 |
+
""")
|
| 514 |
+
|
| 515 |
with gr.Tabs():
|
| 516 |
|
| 517 |
# Tab 1: Tool Builder
|