Activity Feed
Track feature flag changes across your repositories with the activity feed.
The activity feed is your central hub for tracking feature flag changes across all your connected repositories. Every flag addition and removal is logged with full context.
Overview
The activity feed shows:
- New flags added in pull requests
- Removed flags cleaned up from code
- Cleanup PRs created by FlagShark on your request

Event Types
Flag Added
When a new feature flag is detected in a PR:
๐ข Flag Added: enable-new-checkout
Repository: acme/web-app
PR: #234 "Add new checkout flow"
File: src/checkout/PaymentForm.tsx:42
Author: @sarah
2 hours ago
Click the event to see:
- Full file path and line number
- Link to the PR
Flag Removed
When flag code is deleted:
๐ด Flag Removed: enable-old-search
Repository: acme/web-app
PR: #267 "Remove deprecated search flag"
Files affected: 3
Author: @mike
1 day ago
Removed flags are marked as "Cleaned Up" in your flag inventory.
Cleanup PR Created
When you request a cleanup PR from the dashboard, FlagShark generates it and logs the event:
๐งน Cleanup PR Created: #301
Repository: acme/web-app
Flag: enable-legacy-api
Files to modify: 4
Just now
Filtering the Feed
By Repository
Filter to see activity for specific repositories:

By Event Type
Show only certain event types:
- All types
- Flags added
- Flags removed
By Date Range
Filter by time period:
- Last 7 days
- Last 30 days
- Last 90 days
- All time
By Flag Name
Use the search box to filter by flag name.
Activity Details
Expanding Events
Click any event to see full details:
Code Preview
For flag additions and removals, see the actual code:
// Code preview in activity detail
+ const showUpsells = ldClient.variation('show-upsells', user, false);
+ if (showUpsells) {
+ return <UpsellBanner />;
+ }
Related Flags
If a PR affects multiple flags, see them all:
PR #234 affects 3 flags:
โโโ enable-new-checkout (added)
โโโ show-upsells (added)
โโโ use-legacy-api (removed)
Refreshing the Feed
Click the Refresh button at the top of the activity feed to load the latest events.
Notifications
In-App Notifications
Get notified of important events:
- New flags in repositories you watch
- Flags reaching cleanup threshold
- Cleanup PRs ready for review
Email Digests
Toggle the weekly digest on/off in Settings โ Notifications.
Searching Activity
Use the flag name search box to find activity:
Search: "checkout"
Results:
- Flag Added: enable-new-checkout (2 hours ago)
- Flag Removed: legacy-checkout-flow (1 week ago)
Search covers:
- Flag names
Activity Insights
Summary Statistics
At the top of the feed, see:
| Metric | This Week | Trend |
|---|---|---|
| Flags added | 12 | +3 from last week |
| Flags removed | 8 | +5 from last week |
| Net change | +4 | - |
Activity Patterns
Identify patterns:
- Which repositories are most active?
- Who's adding the most flags?
- What's the cleanup rate?

Related Documentation
- GitHub Comments - Flag info in PR comments
- Cleanup PRs - Automated flag removal
- Team Workflows - Team collaboration patterns