npx skills add smithery/neversight --skill sync-content
forever-efficient/pitfal-solutions-website
sync-content
Sync gallery images and content to S3. Use after adding new photos to the portfolio.
Installation
npx skills add forever-efficient/pitfal-solutions-website --skill sync-content
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Create, organize, and distribute content across Workspace.
27.6K installsDraft marketing content across channels — blog posts, social media, email newsletters, landing …
4.5K installsStructured content modeling guidance for schema design, content architecture, content reuse, re…
4.1K installsContent experimentation and A/B testing guidance covering experiment design, hypotheses, metric…
3.2K installsTrack engagement metrics, measure campaign ROI, and analyze content performance across Instagra…
2.6K installsDraft blog posts, social media, email newsletters, landing pages, press releases, and case stud…
2.5K installsAlso in this package
Other skills from forever-efficient/pitfal-solutions-website · top by installs.
npx skills add forever-efficient/pitfal-solutions-website
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Bash, ReadPackage contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,162 B -
docs
SUMMARY.md104 B
History
- First seen on skills.sh
- First recorded snapshot · 28 installs
SKILL.md
Sync Content to S3
Sync local gallery content to AWS S3 bucket.
Arguments
$ARGUMENTS- Optional: specific gallery folder to sync
Steps
- Verify AWS credentials:
``bash aws sts get-caller-identity --profile pitfal ``
- Sync all media files:
``bash aws s3 sync ./content/galleries/ s3://pitfal-media/galleries/ \ --profile pitfal \ --exclude ".DS_Store" \ --exclude ".tmp" \ --exclude ".git/*" ``
- Report files uploaded and total size
For Specific Gallery
If $ARGUMENTS is provided:
aws s3 sync ./content/galleries/$ARGUMENTS/ s3://pitfal-media/galleries/$ARGUMENTS/ \
--profile pitfal \
--exclude "*.DS_Store"
Dry Run (Preview Only)
To see what would be synced without uploading:
aws s3 sync ./content/galleries/ s3://pitfal-media/galleries/ \
--profile pitfal \
--dryrun
Output
Report:
- Number of files uploaded
- Number of files deleted (if --delete used)
- Total data transferred
- S3 bucket URL