diff --git a/.github/workflows/cloud-staging-build.yaml b/.github/workflows/cloud-staging-build.yaml
index 620d809d68..094dd94a77 100644
--- a/.github/workflows/cloud-staging-build.yaml
+++ b/.github/workflows/cloud-staging-build.yaml
@@ -118,8 +118,6 @@ jobs:
- name: Setup extension
run: |
cd tmp_extension
- npm install
- npm run compile:ts
npm install -g @vscode/vsce@3.3.2
npm run build
vsce package
@@ -182,4 +180,4 @@ jobs:
git commit -m "version $VERSION"
git push origin staging
fi
- cd ..
\ No newline at end of file
+ cd ..
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb0a9e840c..394c3a1c4e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,9 @@
-# (2025-08-18)
+# (2025-08-25)
+
+
+### Reverts
+
+* Revert "Implemented weekend discount" ([734e0c7](https://github.com/Pythagora-io/pythagora-v1/commit/734e0c726b179a45f235a0fd230a6310c77ae740))
diff --git a/README.md b/README.md
index b97572b1ff..28c7945d82 100644
--- a/README.md
+++ b/README.md
@@ -8,9 +8,9 @@
-[](https://discord.gg/HaqXugmxr9)
+[](https://discord.gg/HaqXugmxr9)
[](https://github.com/Pythagora-io/gpt-pilot)
-[](https://twitter.com/HiPythagora)
+[](https://x.com/PythagoraAI)
@@ -28,17 +28,25 @@
-
+
### GPT Pilot doesn't just generate code, it builds apps!
+
+
+This repo is not being maintained anymore.
+
+# Visit [Pythagora.ai](https://www.pythagora.ai/) for more info
+
+
+
---
-[](https://youtu.be/4g-1cPGK0GA)
+[]([https://youtu.be/4g-1cPGK0GA](https://www.youtube.com/watch?v=o1nEvwjKziw))
-(click to open the video in YouTube) (1:40min)
+(click to open the video in YouTube) (1:04min)
@@ -46,11 +54,11 @@
-

+
-GPT Pilot is the core technology for the [Pythagora VS Code extension](https://bit.ly/3IeZxp6) that aims to provide **the first real AI developer companion**. Not just an autocomplete or a helper for PR messages but rather a real AI developer that can write full features, debug them, talk to you about issues, ask for review, etc.
+GPT Pilot is the core technology for the [Pythagora VS Code extension](https://marketplace.visualstudio.com/items?itemName=PythagoraTechnologies.pythagora-vs-code) that aims to provide **the first real AI developer companion**. Not just an autocomplete or a helper for PR messages but rather a real AI developer that can write full features, debug them, talk to you about issues, ask for review, etc.
---
@@ -62,7 +70,6 @@ GPT Pilot is the core technology for the [Pythagora VS Code extension](https://b
* [🔌 Requirements](#-requirements)
* [🚦How to start using gpt-pilot?](#how-to-start-using-gpt-pilot)
* [🔎 Examples](#-examples)
-* [🐳 How to start gpt-pilot in docker?](#-how-to-start-gpt-pilot-in-docker)
* [🧑💻️ CLI arguments](#-cli-arguments)
* [🏗 How GPT Pilot works?](#-how-gpt-pilot-works)
* [🕴How's GPT Pilot different from _Smol developer_ and _GPT engineer_?](#hows-gpt-pilot-different-from-smol-developer-and-gpt-engineer)
diff --git a/core/agents/frontend.py b/core/agents/frontend.py
index 60ee86e444..ff76eb505b 100644
--- a/core/agents/frontend.py
+++ b/core/agents/frontend.py
@@ -25,7 +25,7 @@
from core.llm.parser import DescriptiveCodeBlockParser, OptionalCodeBlockParser
from core.log import get_logger
from core.telemetry import telemetry
-from core.ui.base import ProjectStage, UISource
+from core.ui.base import ProjectStage
log = get_logger(__name__)
@@ -168,10 +168,6 @@ async def iterate_frontend(self):
if user_input:
await self.send_message("Errors detected, fixing...")
else:
- await self.ui.send_message(
- "Use code CODE20 and subscribe https://pythagora.ai/pricing",
- source=UISource("Congratulations", "success"),
- )
answer = await self.ask_question(
"Do you want to change anything or report a bug?" if frontend_only else FE_CHANGE_REQ,
buttons={"yes": "I'm done building the UI"} if not frontend_only else None,
diff --git a/core/agents/spec_writer.py b/core/agents/spec_writer.py
index 6d95a9ac5a..2ca25c0d02 100644
--- a/core/agents/spec_writer.py
+++ b/core/agents/spec_writer.py
@@ -11,7 +11,7 @@
from core.log import get_logger
from core.telemetry import telemetry
from core.templates.registry import PROJECT_TEMPLATES
-from core.ui.base import ProjectStage, UISource
+from core.ui.base import ProjectStage
log = get_logger(__name__)
@@ -122,9 +122,6 @@ async def initialize_spec_and_project(self) -> AgentResponse:
await self.ui.send_front_logs_headers("specs_0", ["E1 / T1", "Writing Specification", "working"], "")
- await self.ui.send_message(
- "Use code CODE20 and subscribe https://pythagora.ai/pricing", source=UISource("Congratulations", "success")
- )
await self.send_message(
"## Write specification\n\nPythagora is generating a detailed specification for app based on your input.",
# project_state_id="setup",
diff --git a/pyproject.toml b/pyproject.toml
index ae4420007a..ebdc0039de 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pythagora-core"
-version = "2.0.9"
+version = "2.0.10"
description = "Build complete apps using AI agents"
authors = ["Leon Ostrez "]
license = "FSL-1.1-MIT"