DEV Community

Sharkomode
Sharkomode

Posted on

Treat Kickstarter Saved as state, not a conversion event

Kickstarter pre-launch tracking is cleaner when "Saved" is treated as state, not a conversion event. If a project was already saved before today's check, the useful signal is not "we gained a save today." The useful signal is "this project is still in the watch list, so its page should be reviewed against the questions a returning visitor will ask."

This sounds small, but it prevents a common reporting mistake: turning a visible button state into a growth claim.

The event log pattern

On July 29, 2026, a local Kickstarter monitoring log recorded a public Technology discovery page as accessible. The page title was recorded as "Discover Technology Kickstarter", 12 project links were visible, and the check recorded no access denial, no login requirement, and no sensitive route.

The same run then opened two project pages:

  • Sweekar: The AI Pocket Pet That Physically Grows With You
  • Meet Beni, Your First All-Terrain Camera Robot

Both pages were accessible. Both showed a visible button label of "Saved". The important fields were:

  • saved_before=true
  • saved_after=true
  • already_saved=true
  • new_saves=0

That means the monitoring run confirmed an existing saved state. It did not create two new saves.

Keep the empty branch

A second run on July 29 checked the public Design discovery page. That page was also accessible, with 12 visible project links. But the result was:

  • browsed_projects=0
  • new_saves=0
  • skip_reason=no_new_relevant_project_candidates

That line should not be deleted from the report. It explains that the candidate pool did not match the current filter. For a launch team, that is a useful operational signal. It may mean the filter is too narrow, the category is exhausted for the day, or the current market sample is less relevant than expected.

A practical schema

I like to separate these fields in a daily pre-launch table:

  • source_date: 2026-07-29
  • category: technology or design
  • page_state: accessible
  • visible_project_count: 12
  • candidate_state: already_saved or no_new_candidate
  • action_state: no new save
  • boundary: does not prove conversion, ad efficiency, platform ranking, product quality, or future project performance

The boundary field matters. It keeps the team from writing more certainty than the evidence supports.

What to do with a Saved state

When a relevant project is already saved, I use it as a page review trigger. A returning visitor is likely to check whether the page answers concrete questions:

  • What is the use case?
  • What is the prototype or sample status?
  • What are the safety limits?
  • What are the shipping regions and timelines?
  • What are the warranty and repair assumptions?
  • What questions already show up in comments?

For an AI pocket pet, that may mean clarifying interaction behavior and safety boundaries. For a camera robot, it may mean clarifying terrain limits, battery life, repair options, and delivery scope.

What to do with no new candidates

When the log says there are no new relevant project candidates, I treat it as a filter review trigger:

  • Are the keywords too narrow?
  • Is the category too broad for the product?
  • Are repeated projects being filtered correctly?
  • Should the next run include adjacent categories?
  • Did the team confuse "no action" with "no information"?

No new candidate is still information. It describes the search space.

Why this helps search and internal reviews

This structure also makes public writing and internal reviews easier to check. The first paragraph answers the question directly. The middle includes dated, verifiable evidence. The end explains the limits of the claim.

That is better than a vague post saying "Saved is a strong signal." It is more accurate to say: Saved is a watch-list state. It becomes useful when paired with before/after fields, skip reasons, and a page review workflow.

Disclosure: this article was drafted with AI assistance and manually checked against the dated source notes above before publication.

Top comments (0)