riva 0.1.0__tar.gz → 0.1.1__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 (62) hide show
  1. {riva-0.1.0/src/riva.egg-info → riva-0.1.1}/PKG-INFO +1 -1
  2. {riva-0.1.0 → riva-0.1.1}/pyproject.toml +1 -1
  3. {riva-0.1.0 → riva-0.1.1/src/riva.egg-info}/PKG-INFO +1 -1
  4. {riva-0.1.0 → riva-0.1.1}/LICENSE +0 -0
  5. {riva-0.1.0 → riva-0.1.1}/README.md +0 -0
  6. {riva-0.1.0 → riva-0.1.1}/setup.cfg +0 -0
  7. {riva-0.1.0 → riva-0.1.1}/src/riva/__init__.py +0 -0
  8. {riva-0.1.0 → riva-0.1.1}/src/riva/__main__.py +0 -0
  9. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/__init__.py +0 -0
  10. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/autogen.py +0 -0
  11. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/base.py +0 -0
  12. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/claude_code.py +0 -0
  13. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/cline.py +0 -0
  14. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/codex_cli.py +0 -0
  15. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/continue_dev.py +0 -0
  16. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/crewai.py +0 -0
  17. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/cursor.py +0 -0
  18. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/gemini_cli.py +0 -0
  19. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/github_copilot.py +0 -0
  20. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/langgraph.py +0 -0
  21. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/openclaw.py +0 -0
  22. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/registry.py +0 -0
  23. {riva-0.1.0 → riva-0.1.1}/src/riva/agents/windsurf.py +0 -0
  24. {riva-0.1.0 → riva-0.1.1}/src/riva/cli.py +0 -0
  25. {riva-0.1.0 → riva-0.1.1}/src/riva/core/__init__.py +0 -0
  26. {riva-0.1.0 → riva-0.1.1}/src/riva/core/audit.py +0 -0
  27. {riva-0.1.0 → riva-0.1.1}/src/riva/core/env_scanner.py +0 -0
  28. {riva-0.1.0 → riva-0.1.1}/src/riva/core/monitor.py +0 -0
  29. {riva-0.1.0 → riva-0.1.1}/src/riva/core/network.py +0 -0
  30. {riva-0.1.0 → riva-0.1.1}/src/riva/core/scanner.py +0 -0
  31. {riva-0.1.0 → riva-0.1.1}/src/riva/core/storage.py +0 -0
  32. {riva-0.1.0 → riva-0.1.1}/src/riva/core/usage_stats.py +0 -0
  33. {riva-0.1.0 → riva-0.1.1}/src/riva/tui/__init__.py +0 -0
  34. {riva-0.1.0 → riva-0.1.1}/src/riva/tui/components.py +0 -0
  35. {riva-0.1.0 → riva-0.1.1}/src/riva/tui/dashboard.py +0 -0
  36. {riva-0.1.0 → riva-0.1.1}/src/riva/utils/__init__.py +0 -0
  37. {riva-0.1.0 → riva-0.1.1}/src/riva/utils/formatting.py +0 -0
  38. {riva-0.1.0 → riva-0.1.1}/src/riva/utils/jsonl.py +0 -0
  39. {riva-0.1.0 → riva-0.1.1}/src/riva/web/__init__.py +0 -0
  40. {riva-0.1.0 → riva-0.1.1}/src/riva/web/daemon.py +0 -0
  41. {riva-0.1.0 → riva-0.1.1}/src/riva/web/server.py +0 -0
  42. {riva-0.1.0 → riva-0.1.1}/src/riva.egg-info/SOURCES.txt +0 -0
  43. {riva-0.1.0 → riva-0.1.1}/src/riva.egg-info/dependency_links.txt +0 -0
  44. {riva-0.1.0 → riva-0.1.1}/src/riva.egg-info/entry_points.txt +0 -0
  45. {riva-0.1.0 → riva-0.1.1}/src/riva.egg-info/requires.txt +0 -0
  46. {riva-0.1.0 → riva-0.1.1}/src/riva.egg-info/top_level.txt +0 -0
  47. {riva-0.1.0 → riva-0.1.1}/tests/test_audit.py +0 -0
  48. {riva-0.1.0 → riva-0.1.1}/tests/test_base.py +0 -0
  49. {riva-0.1.0 → riva-0.1.1}/tests/test_cli.py +0 -0
  50. {riva-0.1.0 → riva-0.1.1}/tests/test_components.py +0 -0
  51. {riva-0.1.0 → riva-0.1.1}/tests/test_detectors.py +0 -0
  52. {riva-0.1.0 → riva-0.1.1}/tests/test_env_scanner.py +0 -0
  53. {riva-0.1.0 → riva-0.1.1}/tests/test_formatting.py +0 -0
  54. {riva-0.1.0 → riva-0.1.1}/tests/test_ide_detectors.py +0 -0
  55. {riva-0.1.0 → riva-0.1.1}/tests/test_jsonl.py +0 -0
  56. {riva-0.1.0 → riva-0.1.1}/tests/test_monitor.py +0 -0
  57. {riva-0.1.0 → riva-0.1.1}/tests/test_network.py +0 -0
  58. {riva-0.1.0 → riva-0.1.1}/tests/test_registry.py +0 -0
  59. {riva-0.1.0 → riva-0.1.1}/tests/test_scanner.py +0 -0
  60. {riva-0.1.0 → riva-0.1.1}/tests/test_storage.py +0 -0
  61. {riva-0.1.0 → riva-0.1.1}/tests/test_usage_stats.py +0 -0
  62. {riva-0.1.0 → riva-0.1.1}/tests/test_web.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: riva
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: AI Agent Task Manager - discover and monitor AI coding agents running on your machine
5
5
  Author: Riva Contributors
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "riva"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "AI Agent Task Manager - discover and monitor AI coding agents running on your machine"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: riva
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: AI Agent Task Manager - discover and monitor AI coding agents running on your machine
5
5
  Author: Riva Contributors
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes