plain.observer 0.3.1__tar.gz → 0.3.2__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.

Potentially problematic release.


This version of plain.observer might be problematic. Click here for more details.

Files changed (26) hide show
  1. {plain_observer-0.3.1 → plain_observer-0.3.2}/PKG-INFO +1 -1
  2. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/CHANGELOG.md +10 -0
  3. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/cli.py +1 -1
  4. {plain_observer-0.3.1 → plain_observer-0.3.2}/pyproject.toml +1 -1
  5. {plain_observer-0.3.1 → plain_observer-0.3.2}/.gitignore +0 -0
  6. {plain_observer-0.3.1 → plain_observer-0.3.2}/LICENSE +0 -0
  7. {plain_observer-0.3.1 → plain_observer-0.3.2}/README.md +0 -0
  8. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/README.md +0 -0
  9. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/__init__.py +0 -0
  10. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/admin.py +0 -0
  11. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/config.py +0 -0
  12. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/core.py +0 -0
  13. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/default_settings.py +0 -0
  14. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/migrations/0001_initial.py +0 -0
  15. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/migrations/0002_trace_share_created_at_trace_share_id_trace_summary_and_more.py +0 -0
  16. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/migrations/__init__.py +0 -0
  17. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/models.py +0 -0
  18. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/otel.py +0 -0
  19. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/observer/trace.html +0 -0
  20. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/observer/trace_detail.html +0 -0
  21. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/observer/trace_share.html +0 -0
  22. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/observer/traces.html +0 -0
  23. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/toolbar/observer.html +0 -0
  24. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/templates/toolbar/observer_button.html +0 -0
  25. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/urls.py +0 -0
  26. {plain_observer-0.3.1 → plain_observer-0.3.2}/plain/observer/views.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.observer
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: On-page telemetry and observability tools for Plain.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -1,5 +1,15 @@
1
1
  # plain-observer changelog
2
2
 
3
+ ## [0.3.2](https://github.com/dropseed/plain/releases/plain-observer@0.3.2) (2025-07-25)
4
+
5
+ ### What's changed
6
+
7
+ - The diagnose agent command now instructs the AI to examine the codebase before making suggestions ([f5ae388](https://github.com/dropseed/plain/commit/f5ae388833))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - No changes required
12
+
3
13
  ## [0.3.1](https://github.com/dropseed/plain/releases/plain-observer@0.3.1) (2025-07-23)
4
14
 
5
15
  ### What's changed
@@ -543,7 +543,7 @@ def diagnose(trace_id, url, json_input, agent_command):
543
543
  prompt_lines = [
544
544
  "I have an OpenTelemetry trace data JSON from a Plain application. Analyze it for performance issues or improvements.",
545
545
  "",
546
- "Focus on easy and obvious wins first and foremost. If there is nothing obvious, that's ok! Tell me that and ask whether there are specific things we should look deeper into.",
546
+ "Focus on easy and obvious wins first and foremost. You have access to the codebase, so make sure you look at it before suggesting anything! If there is nothing obvious, that's ok -- tell me that and ask whether there are specific things we should look deeper into.",
547
547
  "",
548
548
  "If potential code changes are found, briefly explain them and ask whether we should implement them.",
549
549
  "",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.observer"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  description = "On-page telemetry and observability tools for Plain."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  license = "BSD-3-Clause"
File without changes
File without changes