A local-first private AI assistant for everyday use. Runs on-device models with encrypted P2P sync, and supports sharing chats publicly on ATProto.
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: Added signing and notarizing commands in the pkg/build.sh

- Added conclusion html, more on the UI side will be worked here..

madclaws cb07a37c a6c94031

+32 -2
-1
mem-agent
··· 1 - FROM driaforall/mem-agent-mlx-4bit
+17 -1
pkg/build.sh
··· 33 33 cp "target/${TARGET}/${BINARY_NAME}" "${CLI_BIN_PATH}" 34 34 chmod +x "${CLI_BIN_PATH}/tiles" 35 35 36 + # Signing the tiles binary 37 + codesign --force \ 38 + --sign "$DEVELOPER_ID_APPLICATION"\ 39 + --options runtime \ 40 + --timestamp \ 41 + --strict \ 42 + "${CLI_BIN_PATH}/tiles" 36 43 37 44 # Build venvstack and move to /usr/local/share/tiles 38 45 # ··· 68 75 69 76 70 77 # signing 78 + productsign \ 79 + --sign "$DEVELOPER_ID_INSTALLER" \ 80 + "tiles-${VERSION}.pkg" \ 81 + "tiles-${VERSION}-signed.pkg" 71 82 83 + # notarizing 84 + xcrun notarytool submit "tiles-${VERSION}-signed.pkg"\ 85 + --keychain-profile "tiles-notary-profile" \ 86 + --wait 72 87 73 - # notarizing 88 + # staple the approval ticket to pkg 89 + xcrun stapler staple "tiles-${VERSION}-signed.pkg"
+15
pkg/resources/conclusion.html
··· 1 + <html> 2 + <body style="font-family: -apple-system, sans-serif;"> 3 + <h2>Tiles Installed!!</h2> 4 + 5 + <p>The <b>tiles</b> CLI is now installed.</p> 6 + 7 + <p>Open Terminal and run:</p> 8 + 9 + <pre>tiles</pre> 10 + 11 + <p>For more options run:</p> 12 + 13 + <pre>tiles --help</pre> 14 + </body> 15 + </html>