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: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
run: node test/geometry.js
- name: Overlay editor
run: node test/editor.js
- name: Installable tree excludes agent instructions
run: test -z "$(git ls-files | grep -Ei '(^|/)(AGENTS|CLAUDE|GEMINI)\.md$' || true)"
- name: Plugin manifest
run: |
jq -e '.schemaVersion == 1 and (.entryPoints | to_entries | all(.value as $p | ($p | test("^[^/].*") and (contains("..") | not))))' manifest.json
Expand Down
41 changes: 0 additions & 41 deletions AGENTS.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.1.1 (2026-09-07)

- Remove repository agent instructions from the installable plugin tree in
response to marketplace review. Maintainer instructions are kept outside
the plugin checkout. Runtime behavior is unchanged.

## 1.1.0 (2026-09-06)

- Scenes: save a workspace's layout together with what each zone holds: an
Expand Down
22 changes: 13 additions & 9 deletions docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
## Current candidate

- Repository/default branch: `jdvmi00/hypertile`, `main`.
- Candidate: the `1.1.0` release, the merge of its release PR into `main`,
tagged `v1.1.0`. `main` is locked at that commit; its full SHA is recorded
here once the promotion has been read back.
- Submission: https://github.com/omacom/omarchy-plugin-marketplace/issues/4893
(initial listing, pending). It supersedes the earlier candidate
`1ba0f8a30526f2148ff46885d67991862ae90f00` (manifest 1.0.1, marker tag
`marketplace-1ba0f8a`); leave that tag and the older `v1.0.1` tag alone.
- Release: `1.1.1`, tagged `v1.1.1` after promotion. The tag and the
maintainer notes on the submission record the exact promoted commit;
do not add a commit to `main` merely to record its own SHA.
- Submission: https://github.com/omacom/omarchy-plugin-marketplace/issues/5181
(initial listing, pending). Issue #4893 is closed and superseded.
- Previous candidate: `25552c2a0ace46d74bff91390811c0ff73671b85` (`v1.1.0`).
Version 1.1.1 removes `AGENTS.md` from the installable tree. Preserve all
published tags, including `v1.1.0`, `v1.0.1`, and `marketplace-1ba0f8a`.
- Keep agent instruction files outside the repository and all installed
plugin contents. The complete repository tree is installed by the plugin
manager; an ignore rule alone does not remove tracked or local files.

`main` is locked, including for administrators. It remains GitHub's default
branch because marketplace validation and upstream installation resolve it.
Expand All @@ -33,7 +37,7 @@ passing development PR from changing the candidate accidentally.

## Finish the current submission

1. Verify remote `main` still equals the candidate above and both its
1. Resolve the release tag to its full SHA, verify remote `main` matches, and confirm both its
checks passed.
2. Update the existing submission's maintainer notes to describe this exact
tree, including session recovery, background service, application launch,
Expand Down Expand Up @@ -71,7 +75,7 @@ instruction before replacing this specifically selected SHA.
5. For an already listed plugin, use the marketplace's Plugin verification
form, action **Verify and publish a newer upstream commit**, plugin ID
`jmartin.hypertile`, repository root URL, and full current `main` SHA.
For an initial listing still pending, update #4893 instead.
For an initial listing still pending, update #5181 instead.
6. Wait for fresh compatibility and baseline reports, then maintainer approval
and successful publication, all covering that same SHA. Keep `main` frozen
throughout; continue development elsewhere.
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": 1,
"id": "jmartin.hypertile",
"name": "Hypertile",
"version": "1.1.0",
"version": "1.1.1",
"author": "Jim Martin",
"description": "Zone-based tiling layouts for Hyprland's Lua layout API: browse and edit layouts at true scale in a fullscreen overlay, with a bar widget showing the current layout. Run install.sh after adding the plugin.",
"kinds": [
Expand Down
Loading