Apify Store README Optimizer avatar

Apify Store README Optimizer

Pricing

from $1.70 / 1,000 readmes

Go to Apify Store
Apify Store README Optimizer

Apify Store README Optimizer

Fetches public Apify Store Actor READMEs and generates cleaner, review-ready optimization drafts with stronger structure, use cases, examples, troubleshooting, and API-safe snippets.

Pricing

from $1.70 / 1,000 readmes

Rating

0.0

(0)

Developer

Trove Vault

Trove Vault

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

20 days ago

Last modified

Categories

Share

Generate review-ready README drafts for public Apify Store Actors without publishing or modifying the source Actor. Use the deterministic optimizer for fast, free drafts, or optionally add your own LLM API key for a second editorial rewrite pass.

Enter one or more Actor identifiers, such as trovevault/shopify-products-scraper, trovevault~seo-fields-scraper, a Store URL, or a public Actor ID. The actor fetches the public Markdown version of the Store page, extracts the real README body, removes platform boilerplate, and writes an optimized draft to the dataset and key-value store.

Best for

  • Auditing and improving Apify Store READMEs before launch.
  • Creating shorter drafts under a fixed character budget.
  • Adding clearer purpose, use cases, feature transparency, examples, limitations, troubleshooting, and support language.
  • Reviewing drafts manually before copying them back into a source repository or Store listing.

Not designed for

  • Publishing changes to Apify Store automatically.
  • Editing the source Actor repository.
  • Replacing manual review for high-value public listings.
  • Producing fully bespoke brand copy without human approval.

How it works

  1. Resolves each Actor input to a public Store slug.
  2. Downloads https://apify.com/<username>/<actor-name>.md.
  3. Extracts the real README section and skips generated schema/API boilerplate.
  4. Rebuilds the README with a cleaner deterministic structure:
    • purpose-focused introduction
    • Best for
    • Not designed for
    • output/input/API examples where present
    • limitations
    • troubleshooting
    • support path
  5. If an LLM provider and API key are provided, sends the original README and deterministic draft to that provider for a final rewrite.
  6. Saves the optimized Markdown to the default dataset and, optionally, the key-value store.

Input example

{
"actorIds": [
"trovevault/shopify-products-scraper",
"https://apify.com/trovevault/seo-fields-scraper"
],
"maxCharacters": 9900,
"llmProvider": "none",
"llmApiKey": "",
"llmModel": "",
"llmTemperature": 0.2,
"llmInstructions": "",
"includeOriginalReadme": false,
"saveMarkdownFiles": true
}

LLM mode example

{
"actorIds": ["trovevault/shopify-products-scraper"],
"maxCharacters": 9900,
"llmProvider": "openai",
"llmApiKey": "YOUR_OPENAI_API_KEY",
"llmModel": "gpt-4o-mini",
"llmTemperature": 0.2,
"llmInstructions": "Keep the tone direct and practical. Preserve all public output fields. Avoid hype."
}

Input reference

FieldTypeDescription
actorIdsarrayPublic Actor identifiers in username/name, username~name, Store URL, or public Actor ID format.
maxCharactersintegerCharacter budget for each optimized README. Defaults to 9900.
llmProviderstringOptional provider: none, openai, anthropic, or openrouter.
llmApiKeystringAPI key for the selected provider. It is used only for the LLM request and is not saved to output.
llmModelstringOptional model override. Defaults are provider-specific.
llmTemperaturenumberCreativity level for the optional LLM rewrite.
llmInstructionsstringExtra style or business instructions for the LLM rewrite.
includeOriginalReadmebooleanInclude the original README body in the dataset item.
saveMarkdownFilesbooleanSave original and optimized Markdown files to the key-value store.

API usage

Run the actor from a script or pipeline with the Apify API. The result dataset will contain one row per optimized Actor README.

curl -X POST "https://api.apify.com/v2/acts/trovevault~apify-store-readme-optimizer/runs" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"actorIds": ["trovevault/shopify-products-scraper"],
"maxCharacters": 9900,
"llmProvider": "none",
"saveMarkdownFiles": true
}'

When using LLM mode through the API, send llmApiKey in the request body. It is used only for the provider request and is not saved in the output dataset or key-value store.

Output

Each dataset item contains:

FieldDescription
actorIdResolved Store slug, such as trovevault/shopify-products-scraper.
readmeUrlPublic Markdown URL used as the source.
originalCharactersCharacter count of the extracted source README.
optimizedCharactersCharacter count of the generated draft.
optimizationModedeterministic or llm.
llmProviderProvider used for the optional LLM rewrite, if any.
llmModelModel used for the optional LLM rewrite, if any.
optimizedReadmeFull optimized Markdown draft.
warningsReview notes such as missing snippets or over-budget output.
optimizedKeyKey-value store key for the optimized Markdown file.
originalKeyKey-value store key for the original extracted Markdown file.

Limitations

The deterministic mode is fast, cheap, and repeatable, but it may not produce fully bespoke editorial copy for every niche Actor. LLM mode can improve copy quality, but it sends the source README and deterministic draft to the selected provider and may require extra review for unsupported claims.

It only works with public Apify Store Actors whose Markdown page is available. Private Actors require authenticated API access, which this version intentionally does not use.

API keys are not written to the dataset or key-value store. They are used only in memory for the selected provider request.

Troubleshooting

The actor cannot resolve an ID Use a Store slug such as username/actor-name or paste the full Store URL. Public Actor IDs are also supported when the Apify API can resolve them.

The optimized README feels too generic Lower-level sections are built from the source README. If the source lacks examples, use cases, or limitations, the output may need manual domain-specific editing.

The LLM rewrite fails The actor falls back to deterministic output and writes a warning in the dataset item. Check the provider, API key, model name, and account quota.

I do not want to send README content to an LLM Set llmProvider to none. This is the default.

The output is too long Lower maxCharacters. The actor removes FAQ and long tables first, then truncates as a last resort.

Support

Found a bug or a weak optimization pattern? Open an issue with the input Actor ID, run ID, and expected README style.