reflexive 1.1.0 → 1.1.1

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.
Files changed (30) hide show
  1. package/dashboard/out/404/index.html +1 -1
  2. package/dashboard/out/404.html +1 -1
  3. package/dashboard/out/__next.__PAGE__.txt +1 -1
  4. package/dashboard/out/__next._full.txt +1 -1
  5. package/dashboard/out/__next._head.txt +1 -1
  6. package/dashboard/out/__next._index.txt +1 -1
  7. package/dashboard/out/__next._tree.txt +1 -1
  8. package/dashboard/out/_not-found/__next._full.txt +1 -1
  9. package/dashboard/out/_not-found/__next._head.txt +1 -1
  10. package/dashboard/out/_not-found/__next._index.txt +1 -1
  11. package/dashboard/out/_not-found/__next._not-found.__PAGE__.txt +1 -1
  12. package/dashboard/out/_not-found/__next._not-found.txt +1 -1
  13. package/dashboard/out/_not-found/__next._tree.txt +1 -1
  14. package/dashboard/out/_not-found/index.html +1 -1
  15. package/dashboard/out/_not-found/index.txt +1 -1
  16. package/dashboard/out/index.html +1 -1
  17. package/dashboard/out/index.txt +1 -1
  18. package/dist/api/routes.d.ts.map +1 -1
  19. package/dist/api/routes.js +2 -1
  20. package/dist/api/routes.js.map +1 -1
  21. package/dist/managers/sandbox-manager.d.ts.map +1 -1
  22. package/dist/managers/sandbox-manager.js +32 -5
  23. package/dist/managers/sandbox-manager.js.map +1 -1
  24. package/dist/mcp/hosted-tools.d.ts.map +1 -1
  25. package/dist/mcp/hosted-tools.js +60 -59
  26. package/dist/mcp/hosted-tools.js.map +1 -1
  27. package/package.json +1 -1
  28. package/docs/README.md +0 -87
  29. /package/dashboard/out/_next/static/{BQdp1gb81VhwEMasAQQT_ → XXF5CJd_920FXAEETnqHU}/_buildManifest.js +0 -0
  30. /package/dashboard/out/_next/static/{BQdp1gb81VhwEMasAQQT_ → XXF5CJd_920FXAEETnqHU}/_ssgManifest.js +0 -0
package/docs/README.md DELETED
@@ -1,87 +0,0 @@
1
- # Reflexive Documentation
2
-
3
- Comprehensive documentation for Reflexive, an AI-powered introspection framework for Node.js applications.
4
-
5
- ## Documentation Index
6
-
7
- ### Getting Started
8
- - [Getting Started Guide](./getting-started.md) - Installation, quick start, and first steps
9
-
10
- ### User Guides
11
- - [User Guide](./user-guide.md) - Complete usage guide for all modes and features
12
- - [Examples](./examples.md) - Code examples and common use cases
13
-
14
- ### API & Developer Resources
15
- - [API Reference](./api-reference.md) - Complete API documentation for library and REST modes
16
- - [Developer Guide](./developer-guide.md) - Architecture, contributing, and development setup
17
-
18
- ### Deployment
19
- - [Deployment Guide](./deployment.md) - Railway, Docker, and production deployment
20
-
21
- ## Quick Links
22
-
23
- ### Installation
24
- ```bash
25
- npm install -g reflexive
26
- ```
27
-
28
- ### Quick Start
29
- ```bash
30
- # Local mode - monitor any Node.js app
31
- npx reflexive app.js
32
-
33
- # Sandbox mode - isolated execution
34
- npx reflexive --sandbox app.js
35
-
36
- # Library mode - embed in your app
37
- import { makeReflexive } from 'reflexive';
38
- ```
39
-
40
- ## What is Reflexive?
41
-
42
- Reflexive is an AI-powered introspection framework that lets you talk to your running Node.js applications. It embeds Claude AI inside your app, giving it the ability to:
43
-
44
- - See logs in real-time
45
- - Read and modify source files
46
- - Set breakpoints and inspect variables
47
- - Control process lifecycle
48
- - Respond to runtime events
49
-
50
- ## Three Operating Modes
51
-
52
- 1. **Local Mode** - Run any Node.js app with AI monitoring
53
- 2. **Sandbox Mode** - Execute apps in isolated Vercel Sandbox environments
54
- 3. **Hosted Mode** - Multi-tenant production deployment with REST API
55
-
56
- ## Key Features
57
-
58
- - **AI Agent Loop** - Claude works autonomously until tasks are complete
59
- - **V8 Debugger** - Real breakpoints with Inspector protocol
60
- - **Safety First** - All capabilities require explicit opt-in flags
61
- - **TypeScript Native** - Full type safety and IntelliSense support
62
- - **Zero Config** - Works out of the box, configurable when needed
63
-
64
- ## Version Information
65
-
66
- - **Current Version**: 0.2.0
67
- - **Node.js**: >= 18.0.0
68
- - **TypeScript**: 5.7+
69
-
70
- ## Support & Community
71
-
72
- - [GitHub Repository](https://github.com/your-org/reflexive)
73
- - [Issue Tracker](https://github.com/your-org/reflexive/issues)
74
- - [Claude Agent SDK Docs](https://docs.anthropic.com/en/docs/claude-code/agent-sdk)
75
-
76
- ## Documentation Versions
77
-
78
- This documentation corresponds to Reflexive v0.2.0, which includes:
79
- - Complete TypeScript migration
80
- - Sandbox capabilities (Vercel Sandbox)
81
- - Hosted mode with REST API
82
- - V8 Inspector debugging
83
- - Comprehensive test suite
84
-
85
- ---
86
-
87
- **Next Steps**: Start with the [Getting Started Guide](./getting-started.md)