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
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ on:
permissions:
contents: write
pull-requests: write
# Provenance attestation for the published release assets (main.js, styles.css,
# manifest.json) - lets users cryptographically verify they were built here.
id-token: write
attestations: write

jobs:
release:
Expand Down Expand Up @@ -152,6 +156,15 @@ jobs:
if: steps.ver.outputs.release == 'true'
run: node scripts/check-bundle.mjs

- name: Attest build provenance
if: steps.ver.outputs.release == 'true'
uses: actions/attest-build-provenance@v2
with:
subject-path: |
main.js
styles.css
manifest.json

- name: Create GitHub Release
if: steps.ver.outputs.release == 'true'
uses: softprops/action-gh-release@v3
Expand All @@ -165,7 +178,7 @@ jobs:

### Install (manual)
Download `main.js`, `manifest.json`, and `styles.css` below into
`<your-vault>/.obsidian/plugins/agentage-memory/`, then enable
your vault's `.obsidian/plugins/agentage-memory/` folder, then enable
**Agentage Sync** under Settings → Community plugins.

### Install (BRAT)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Install [BRAT](https://github.com/TfTHacker/obsidian42-brat), then **Add beta pl

### Manual

From the [latest release](https://github.com/agentage/obsidian-sync/releases/latest), copy `main.js`, `manifest.json`, and `styles.css` into `<your-vault>/.obsidian/plugins/agentage-memory/`, then enable **Agentage Sync** under Settings → Community plugins.
From the [latest release](https://github.com/agentage/obsidian-sync/releases/latest), copy `main.js`, `manifest.json`, and `styles.css` into your vault's `.obsidian/plugins/agentage-memory/` folder, then enable **Agentage Sync** under Settings → Community plugins.

## Getting started

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "agentage-memory",
"name": "Agentage Sync",
"version": "0.2.1",
"version": "0.2.2",
"minAppVersion": "1.11.4",
"description": "Let Claude, ChatGPT, Cursor, and any MCP client read and write your Obsidian vault. Two-way Git sync to a private memory, safe merges with flagged conflicts, plain Markdown you own. Up to 100 MB included.",
"author": "agentage",
Expand Down
22 changes: 16 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-sync",
"version": "0.2.1",
"version": "0.2.2",
"description": "Sync your vault to a private memory that any AI reads and writes over MCP: Claude, ChatGPT, Cursor, and any MCP client share the same Markdown you own.",
"private": true,
"type": "module",
Expand Down Expand Up @@ -57,6 +57,6 @@
"dependencies": {
"diff3": "^0.0.4",
"isomorphic-git": "^1.38.5",
"js-yaml": "^4.1.0"
"js-yaml": "^4.2.0"
}
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"0.1.5": "1.11.4",
"0.1.6": "1.11.4",
"0.2.0": "1.11.4",
"0.2.1": "1.11.4"
"0.2.1": "1.11.4",
"0.2.2": "1.11.4"
}