Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #677 +/- ##
==========================================
- Coverage 78.19% 78.19% -0.01%
==========================================
Files 239 239
Lines 18132 18139 +7
==========================================
+ Hits 14178 14183 +5
- Misses 3954 3956 +2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
srtaalej
marked this pull request as ready for review
September 24, 2026 17:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog
slack create --appnow automatically syncs the manifest from app settings to the local project.Summary
The CLI handoff from app settings to local development currently requires two commands:
slack create --app ... --template ...followed byslack manifest sync. This PR consolidates them — when--appis passed toslack create, the remote manifest is fetched from app settings and written to the local project after linking.Changes:
LinkExistingAppnow returns the auth token so callers can use it for follow-up API callsGetManifestRemoteand written locally viaWriteManifestLocalslack manifest sync --manifest-source=remotemanuallyPreview
No UI changes — output is the same as before, minus the need for a separate
slack manifest syncstep.Testing
make buildcdinto the created project and run./bin/slack runNotes
slack manifest sync --manifest-source=remotemanuallymanifest.Syncis unchanged — the create flow inlines only the fetch and write steps since it always uses remote as the source of truthRequirements