Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/plugin-api-v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
with:
repository: kachofugetsu09/akashic-agent
ref: c55a1eac942d489b8f41e81f6b1218d98ec1c6f1
ref: d5e5177092d74de03588d8675f3504db36b7bacb
path: .akashic-core
- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion akashic.plugin.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
schema_version = 1
name = "observe"
version = "1.4.0"
version = "1.4.1"
api_version = 3
entrypoint = "plugin.py"
650 changes: 0 additions & 650 deletions dashboard_panel.js

This file was deleted.

229 changes: 183 additions & 46 deletions dashboard_panel.tsx

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,16 @@

api_version = 3
name = "observe"
version = "1.4.0"
version = "1.4.1"
inject = (UI_SLOTS,)
workspace_roots = ("observe",)
dashboard_module = "dashboard.py"
web_module = "web_module.js"
web_requires = ("workbench.panels.v2",)
web_provides = ()
web_contract_digests = {
"workbench.panels.v2": "fb6417c9bf532c1fdb344767d06065d5d3293da85deb64eff1e8088889a33bcb",
}


class _ObserveWriter(Protocol):
Expand Down
3 changes: 2 additions & 1 deletion tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ async def _mount_observe(tmp_path: Path) -> tuple[CompositionRoot, Path]:
inject=module.inject,
runtime=PluginRuntime(
plugin_id="observe",
generation_id=root.generation_id,
plugin_dir=plugin_dir,
data_dir=tmp_path / "plugin-data",
workspace=workspace,
Expand Down Expand Up @@ -587,7 +588,7 @@ def test_static_manifest_and_module_exports_match() -> None:
manifest = load_static_plugin_manifest(plugin_dir)
composable = ComposablePlugin.from_module(module)
assert manifest.name == composable.name == "observe"
assert manifest.version == composable.version == "1.4.0"
assert manifest.version == composable.version == "1.4.1"
assert manifest.api_version == composable.api_version == 3
assert manifest.entrypoint == "plugin.py"
assert composable.dashboard_module == "dashboard.py"
Expand Down
1 change: 1 addition & 0 deletions web_module.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions web_module.js

Large diffs are not rendered by default.

Loading