nova-architect 2.0.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.
Files changed (35) hide show
  1. nova_architect-2.0.0/MANIFEST.in +4 -0
  2. nova_architect-2.0.0/PKG-INFO +162 -0
  3. nova_architect-2.0.0/README.md +119 -0
  4. nova_architect-2.0.0/nova_architect/__init__.py +7 -0
  5. nova_architect-2.0.0/nova_architect/backend/__init__.py +1 -0
  6. nova_architect-2.0.0/nova_architect/backend/__pycache__/act_executor.cpython-311.pyc +0 -0
  7. nova_architect-2.0.0/nova_architect/backend/__pycache__/architect.cpython-311.pyc +0 -0
  8. nova_architect-2.0.0/nova_architect/backend/__pycache__/config.cpython-311.pyc +0 -0
  9. nova_architect-2.0.0/nova_architect/backend/__pycache__/database.cpython-311.pyc +0 -0
  10. nova_architect-2.0.0/nova_architect/backend/__pycache__/exporter.cpython-311.pyc +0 -0
  11. nova_architect-2.0.0/nova_architect/backend/__pycache__/main.cpython-311.pyc +0 -0
  12. nova_architect-2.0.0/nova_architect/backend/__pycache__/templates.cpython-311.pyc +0 -0
  13. nova_architect-2.0.0/nova_architect/backend/__pycache__/vision.cpython-311.pyc +0 -0
  14. nova_architect-2.0.0/nova_architect/backend/__pycache__/voice_handler.cpython-311.pyc +0 -0
  15. nova_architect-2.0.0/nova_architect/backend/act_executor.py +458 -0
  16. nova_architect-2.0.0/nova_architect/backend/architect.py +306 -0
  17. nova_architect-2.0.0/nova_architect/backend/config.py +40 -0
  18. nova_architect-2.0.0/nova_architect/backend/database.py +117 -0
  19. nova_architect-2.0.0/nova_architect/backend/exporter.py +62 -0
  20. nova_architect-2.0.0/nova_architect/backend/main.py +417 -0
  21. nova_architect-2.0.0/nova_architect/backend/requirements.txt +25 -0
  22. nova_architect-2.0.0/nova_architect/backend/templates.py +73 -0
  23. nova_architect-2.0.0/nova_architect/backend/vision.py +186 -0
  24. nova_architect-2.0.0/nova_architect/backend/voice_handler.py +146 -0
  25. nova_architect-2.0.0/nova_architect/cli.py +418 -0
  26. nova_architect-2.0.0/nova_architect/frontend/index.html +1612 -0
  27. nova_architect-2.0.0/nova_architect.egg-info/PKG-INFO +162 -0
  28. nova_architect-2.0.0/nova_architect.egg-info/SOURCES.txt +33 -0
  29. nova_architect-2.0.0/nova_architect.egg-info/dependency_links.txt +1 -0
  30. nova_architect-2.0.0/nova_architect.egg-info/entry_points.txt +2 -0
  31. nova_architect-2.0.0/nova_architect.egg-info/requires.txt +21 -0
  32. nova_architect-2.0.0/nova_architect.egg-info/top_level.txt +1 -0
  33. nova_architect-2.0.0/pyproject.toml +65 -0
  34. nova_architect-2.0.0/setup.cfg +4 -0
  35. nova_architect-2.0.0/setup.py +53 -0
@@ -0,0 +1,4 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include nova_architect/frontend *
4
+ recursive-include nova_architect/backend *
@@ -0,0 +1,162 @@
1
+ Metadata-Version: 2.4
2
+ Name: nova-architect
3
+ Version: 2.0.0
4
+ Summary: Build AWS infrastructure from plain English — powered by Amazon Nova
5
+ Home-page: https://github.com/nova-architect/nova-architect
6
+ Author: Nova Architect
7
+ License: MIT
8
+ Project-URL: Homepage, https://nova-architect.dev
9
+ Project-URL: Repository, https://github.com/nova-architect/nova-architect
10
+ Project-URL: Documentation, https://docs.nova-architect.dev
11
+ Project-URL: Bug Tracker, https://github.com/nova-architect/nova-architect/issues
12
+ Keywords: aws,cloud,infrastructure,ai,bedrock,nova,automation
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development :: Build Tools
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: fastapi>=0.115.0
22
+ Requires-Dist: uvicorn[standard]>=0.30.6
23
+ Requires-Dist: python-multipart>=0.0.9
24
+ Requires-Dist: websockets>=12.0
25
+ Requires-Dist: boto3>=1.35.0
26
+ Requires-Dist: botocore>=1.35.0
27
+ Requires-Dist: python-dotenv>=1.0.1
28
+ Requires-Dist: httpx>=0.27.0
29
+ Requires-Dist: pillow>=10.4.0
30
+ Requires-Dist: playwright<=1.56.0,>=1.54.0
31
+ Requires-Dist: rich>=13.0.0
32
+ Requires-Dist: click>=8.0.0
33
+ Requires-Dist: pydantic>=2.0.0
34
+ Requires-Dist: pydantic-settings>=2.0.0
35
+ Provides-Extra: dev
36
+ Requires-Dist: pytest>=7.0; extra == "dev"
37
+ Requires-Dist: pytest-asyncio>=0.21; extra == "dev"
38
+ Requires-Dist: httpx>=0.27.0; extra == "dev"
39
+ Requires-Dist: black; extra == "dev"
40
+ Requires-Dist: ruff; extra == "dev"
41
+ Dynamic: home-page
42
+ Dynamic: requires-python
43
+
44
+ # ⚡ Nova Architect
45
+
46
+ **Build AWS infrastructure from plain English.**
47
+
48
+ Describe your application. Nova designs the architecture. Nova Act physically
49
+ builds it in your AWS Console — live, in real-time.
50
+
51
+ ---
52
+
53
+ ## Install in 30 seconds
54
+
55
+ ```bash
56
+ pip install nova-architect
57
+ nova-architect setup
58
+ nova-architect start
59
+ ```
60
+
61
+ Your browser opens. You start building.
62
+
63
+ ---
64
+
65
+ ## Demo
66
+
67
+ > *"A photo sharing API with S3 image storage, Lambda processing, and DynamoDB metadata"*
68
+
69
+ Nova Architect:
70
+ 1. **Designs** the optimal serverless AWS architecture (Nova 2 Lite)
71
+ 2. **Explains** it aloud and asks for approval (Nova 2 Sonic)
72
+ 3. **Builds it live** — Nova Act physically navigates your AWS Console
73
+ 4. **Streams screenshots** of every click to your dashboard
74
+
75
+ 4 services. Real AWS account. Under 5 minutes.
76
+
77
+ ---
78
+
79
+ ## Prerequisites
80
+
81
+ | Requirement | Where |
82
+ |---|---|
83
+ | Python 3.11+ | python.org |
84
+ | AWS Account + IAM credentials | AWS Console → IAM → Security credentials |
85
+ | Nova Act API key | nova.amazon.com/act → Developer Tools |
86
+ | Bedrock Nova model access | AWS Console → Bedrock → Model access |
87
+
88
+ ---
89
+
90
+ ## Commands
91
+
92
+ ```bash
93
+ nova-architect setup # Interactive setup (run once)
94
+ nova-architect start # Start the dashboard
95
+ nova-architect doctor # Diagnose issues
96
+ nova-architect reset # Clean up AWS resources
97
+ nova-architect upgrade # Update to latest version
98
+ nova-architect version # Show version
99
+ ```
100
+
101
+ ### Start options
102
+
103
+ ```bash
104
+ nova-architect start --port 9000 # Custom port
105
+ nova-architect start --no-browser # Don't auto-open browser
106
+ nova-architect start --headless # Nova Act without visible browser
107
+ nova-architect start --demo # Demo mode, no real AWS calls
108
+ ```
109
+
110
+ ---
111
+
112
+ ## How It Works
113
+
114
+ ```
115
+ You (text / voice / diagram)
116
+
117
+
118
+ Nova 2 Lite ──── Designs optimal serverless architecture
119
+
120
+
121
+ Nova 2 Sonic ─── Presents design aloud, listens for approval
122
+
123
+
124
+ Nova Act ──────── Opens Chromium, navigates AWS Console live
125
+ Creates every service. Streams screenshots.
126
+ ```
127
+
128
+ **Nova Pro** reads hand-drawn architecture diagrams and whiteboard sketches.
129
+
130
+ ---
131
+
132
+ ## Supported AWS Services
133
+
134
+ S3 · Lambda · DynamoDB · API Gateway · SQS · SNS · Cognito · EventBridge · IAM
135
+
136
+ ---
137
+
138
+ ## Privacy
139
+
140
+ Your AWS credentials are stored locally in `~/.nova-architect/config.json`.
141
+ They are never sent to any Nova Architect server — there is no Nova Architect server.
142
+ Everything runs on your machine, in your AWS account.
143
+
144
+ ---
145
+
146
+ ## Docker
147
+
148
+ ```bash
149
+ docker run -p 8000:8000 \
150
+ -e AWS_ACCESS_KEY_ID=your_key \
151
+ -e AWS_SECRET_ACCESS_KEY=your_secret \
152
+ -e AWS_REGION=us-east-1 \
153
+ -e NOVA_ACT_API_KEY=your_nova_act_key \
154
+ -e NOVA_ACT_HEADLESS=true \
155
+ novaarchitect/nova-architect:latest
156
+ ```
157
+
158
+ ---
159
+
160
+ ## License
161
+
162
+ MIT — *Built with Amazon Nova 2 Lite · Nova Act · Nova 2 Sonic · Nova Pro*
@@ -0,0 +1,119 @@
1
+ # ⚡ Nova Architect
2
+
3
+ **Build AWS infrastructure from plain English.**
4
+
5
+ Describe your application. Nova designs the architecture. Nova Act physically
6
+ builds it in your AWS Console — live, in real-time.
7
+
8
+ ---
9
+
10
+ ## Install in 30 seconds
11
+
12
+ ```bash
13
+ pip install nova-architect
14
+ nova-architect setup
15
+ nova-architect start
16
+ ```
17
+
18
+ Your browser opens. You start building.
19
+
20
+ ---
21
+
22
+ ## Demo
23
+
24
+ > *"A photo sharing API with S3 image storage, Lambda processing, and DynamoDB metadata"*
25
+
26
+ Nova Architect:
27
+ 1. **Designs** the optimal serverless AWS architecture (Nova 2 Lite)
28
+ 2. **Explains** it aloud and asks for approval (Nova 2 Sonic)
29
+ 3. **Builds it live** — Nova Act physically navigates your AWS Console
30
+ 4. **Streams screenshots** of every click to your dashboard
31
+
32
+ 4 services. Real AWS account. Under 5 minutes.
33
+
34
+ ---
35
+
36
+ ## Prerequisites
37
+
38
+ | Requirement | Where |
39
+ |---|---|
40
+ | Python 3.11+ | python.org |
41
+ | AWS Account + IAM credentials | AWS Console → IAM → Security credentials |
42
+ | Nova Act API key | nova.amazon.com/act → Developer Tools |
43
+ | Bedrock Nova model access | AWS Console → Bedrock → Model access |
44
+
45
+ ---
46
+
47
+ ## Commands
48
+
49
+ ```bash
50
+ nova-architect setup # Interactive setup (run once)
51
+ nova-architect start # Start the dashboard
52
+ nova-architect doctor # Diagnose issues
53
+ nova-architect reset # Clean up AWS resources
54
+ nova-architect upgrade # Update to latest version
55
+ nova-architect version # Show version
56
+ ```
57
+
58
+ ### Start options
59
+
60
+ ```bash
61
+ nova-architect start --port 9000 # Custom port
62
+ nova-architect start --no-browser # Don't auto-open browser
63
+ nova-architect start --headless # Nova Act without visible browser
64
+ nova-architect start --demo # Demo mode, no real AWS calls
65
+ ```
66
+
67
+ ---
68
+
69
+ ## How It Works
70
+
71
+ ```
72
+ You (text / voice / diagram)
73
+
74
+
75
+ Nova 2 Lite ──── Designs optimal serverless architecture
76
+
77
+
78
+ Nova 2 Sonic ─── Presents design aloud, listens for approval
79
+
80
+
81
+ Nova Act ──────── Opens Chromium, navigates AWS Console live
82
+ Creates every service. Streams screenshots.
83
+ ```
84
+
85
+ **Nova Pro** reads hand-drawn architecture diagrams and whiteboard sketches.
86
+
87
+ ---
88
+
89
+ ## Supported AWS Services
90
+
91
+ S3 · Lambda · DynamoDB · API Gateway · SQS · SNS · Cognito · EventBridge · IAM
92
+
93
+ ---
94
+
95
+ ## Privacy
96
+
97
+ Your AWS credentials are stored locally in `~/.nova-architect/config.json`.
98
+ They are never sent to any Nova Architect server — there is no Nova Architect server.
99
+ Everything runs on your machine, in your AWS account.
100
+
101
+ ---
102
+
103
+ ## Docker
104
+
105
+ ```bash
106
+ docker run -p 8000:8000 \
107
+ -e AWS_ACCESS_KEY_ID=your_key \
108
+ -e AWS_SECRET_ACCESS_KEY=your_secret \
109
+ -e AWS_REGION=us-east-1 \
110
+ -e NOVA_ACT_API_KEY=your_nova_act_key \
111
+ -e NOVA_ACT_HEADLESS=true \
112
+ novaarchitect/nova-architect:latest
113
+ ```
114
+
115
+ ---
116
+
117
+ ## License
118
+
119
+ MIT — *Built with Amazon Nova 2 Lite · Nova Act · Nova 2 Sonic · Nova Pro*
@@ -0,0 +1,7 @@
1
+ """
2
+ Nova Architect — Build AWS infrastructure from plain English.
3
+ Powered by Amazon Nova 2 Lite, Nova Act, Nova Sonic, and Nova Pro.
4
+ """
5
+
6
+ __version__ = "2.0.0"
7
+ __author__ = "Nova Architect"
@@ -0,0 +1 @@
1
+ # Nova Architect — Backend Package