shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

268
active users

#appintents

0 posts0 participants0 posts today
Adrian Schönig :kangaroo:<p>Shortcuts integration into Spotlight in macOS Tahoe is quite amazing. EntityQuery support could be improved but this a great way to trigger app actions quickly. If you have a Mac app, do add support for <a href="https://aus.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a>.</p>
Kenny<p>New to app intents, or want to learn a little more of the fundamentals of how the framework works? Check out this great session <a href="https://hachyderm.io/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> <a href="https://hachyderm.io/tags/wwdc25" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>wwdc25</span></a><br><a href="https://developer.apple.com/videos/play/wwdc2025/244" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">developer.apple.com/videos/pla</span><span class="invisible">y/wwdc2025/244</span></a></p>
Adrian Schönig :kangaroo:<p>Apple should totally ditch the proprietary nature of <a href="https://aus.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> and instead each app with intents should expose them through a mini <a href="https://aus.social/tags/MCP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MCP</span></a> server. Free all those actions from the confines of Siri and Shortcuts, and let apps freely trigger and combine each others’ actions.</p>
Mario Alberto Guzmán<p>By the way, if your iOS ships <a href="https://mastodon.social/tags/AppShortcuts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppShortcuts</span></a> with a custom background tile color (for the Shortcuts app), its most likely that it only works on iPhone and not iPad.</p><p>I was able to get it to work on iPad by making a duplicate entry in the info plist for “CFBundleIcons" to be “CFBundleIcons~ipad" because I remembered about "Device-Specific Keys" from this article.</p><p>So now my background tiles show up green on iPadOS Shortcuts app.</p><p><a href="https://mastodon.social/tags/SwiftUI" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SwiftUI</span></a> <a href="https://mastodon.social/tags/iOSDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>iOSDev</span></a> <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> <a href="https://mastodon.social/tags/Shortcuts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Shortcuts</span></a> </p><p><a href="https://developer.apple.com/documentation/bundleresources/managing-your-app-s-information-property-list" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">developer.apple.com/documentat</span><span class="invisible">ion/bundleresources/managing-your-app-s-information-property-list</span></a></p>
Matthew Cassinelli<p>Here’s my <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> question of the day – is a Delete action a sufficient “Change in UI” to make “Open When Run” recommended?</p><p>Does removing something from the UI count as changing it? Should Siri take you into the app to show you it’s now not there anymore?</p><p>Show it Show When Run? Or just “do”?</p><p>Other apps don’t use Open When Run or Show When Run on Delete functions, so I’m not adding it for my clients – but I’m curious if this changes with Apple Intelligence.</p><p>cc/ <span class="h-card" translate="no"><a href="https://mastodon.social/@mgorbach" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>mgorbach</span></a></span> <span class="h-card" translate="no"><a href="https://imc.sh/@ian" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>ian</span></a></span></p>
Matthew Cassinelli<p><a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> developers – how do you make your intents accept plain text strings and match with an associated entity without the user selecting and instead being passed from a variable?</p><p>Is it through the entities(matching string: ) in IntentParameterDependency (<a href="https://developer.apple.com/documentation/appintents/intentparameterdependency#overview" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">developer.apple.com/documentat</span><span class="invisible">ion/appintents/intentparameterdependency#overview</span></a>) or by declaring an Associated Type in the Dynamic Options Provider (<a href="https://developer.apple.com/documentation/appintents/dynamicoptionsprovider#Associated-Types" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">developer.apple.com/documentat</span><span class="invisible">ion/appintents/dynamicoptionsprovider#Associated-Types</span></a>)?</p><p>I believe <span class="h-card" translate="no"><a href="https://imc.sh/@ian" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>ian</span></a></span> this was fixed in FB10211918 (Open Folder cannot accept text as a variable input)</p>
Matthew Cassinelli<p><a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> developers, help me figure out how to specify the default value for a Result that is itself an entity.</p><p>In Shortcuts, the first property is the default, but I haven’t seen an implementation in code myself – does putting a property first up at the top make it the default?</p>
John Davis<p>[AppIntents Dev Q]</p><p>As a user, when viewing a photo or image, I want to be able to tell Siri, “add this to &lt;my app name&gt;”, similar to an example from a WWDC presentation where a photo is added to a note in the notes app.</p><p>Is this... possible with AppIntent app domains as they are documented?</p><p>The photos domain seems specific to photo libraries, and the file domain seems specific to file browsers. </p><p><a href="https://mastodon.social/tags/iosdev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>iosdev</span></a> <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> <a href="https://mastodon.social/tags/iOS18" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>iOS18</span></a></p>
Mario Alberto Guzmán<p>Super rough implementation but here I have your bookmarked Transit Stops in PDX Transit showing up as App Shortcuts. Tapping them does a network call to get the RT arrival times and display them in the Siri UI.</p><p>You can launch them from Shortcuts.app, Spotlight, Siri... </p><p><a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> <a href="https://mastodon.social/tags/AppShortcuts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppShortcuts</span></a> <a href="https://mastodon.social/tags/Siri" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Siri</span></a> <a href="https://mastodon.social/tags/AppleIntelligence" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppleIntelligence</span></a> <a href="https://mastodon.social/tags/Trimet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Trimet</span></a> <a href="https://mastodon.social/tags/Portland" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Portland</span></a> <a href="https://mastodon.social/tags/PublicTransit" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PublicTransit</span></a></p>
Matthew Cassinelli<p>I think it's time to start using <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a></p>
Matthew Cassinelli<p>Thank you to <span class="h-card" translate="no"><a href="https://aus.social/@qzervaas" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>qzervaas</span></a></span> for documenting this <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> method for apps with complex models: <a href="https://matthewcassinelli.com/app-intents-grouping-parent-parameters-using-a-unified-entity-approach/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">matthewcassinelli.com/app-inte</span><span class="invisible">nts-grouping-parent-parameters-using-a-unified-entity-approach/</span></a></p>
Carlo Zottmann<p><a href="https://norden.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> heads-up: `DynamicOptionsProvider` comes out differently when compiling with <a href="https://norden.social/tags/Xcode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Xcode</span></a> 15 compared to 14.3.1.</p><p>The resulting list looks different in the Shortcuts editor but, more importantly, its filtering doesn't work. Enter any text and you'll get zero results. 😐</p><p>I went back to Xcode 14 for the time being</p>
Ryan Ashcraft<p>Has anyone tried using @AppDependency and AppDependencyManager? <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a> <a href="https://mastodon.social/tags/iOSDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>iOSDev</span></a></p>
César Pinto Castillo<p>As you probably know we can request confirmation in <br><a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a>, which is great! Unfortunately the confirmation request is skipped when calling the intent from a Button.</p><p>Anyone knows if this is a bug or a feature? 😅</p>
Rodrigo Araújo<p>Another <a href="https://mastodon.social/tags/SwiftData" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SwiftData</span></a> question: how do we make it work with <a href="https://mastodon.social/tags/AppIntents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AppIntents</span></a>? </p><p>In order to implement the queries necessaries for the AppIntent protocol, I need to access the modelContext from outside of a view, but couldn’t find a way to do that 😕</p><p>Cc: <span class="h-card"><a href="https://mastodon.social/@mgorbach" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>mgorbach</span></a></span>, <span class="h-card"><a href="https://mstdn.social/@dachary" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>dachary</span></a></span></p>
Jesse Grosjean<p><a href="https://mastodon.social/tags/appintents" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>appintents</span></a> Does anyone know how to implement an AppIntent such as "Get Details of Music" where the return type seems to change based on an AppIntent parameter?</p>