134
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill maxvaega/skillkit --skill edge-large-content- SKILL.md1001.2 KB
Overview
This skill provides a large-content test asset intended to validate lazy-loading and streaming behavior in agent platforms. It embeds 500KB+ of repetitive generated content so integrators can measure performance, memory usage, and loading strategies. Use it to simulate heavy prompt or resource payloads without relying on external data sources.
How this skill works
The skill exposes a single large payload comprised of repeated lines of generated text that together exceed 500KB. When requested by an agent or loader, the skill can be fetched in full or streamed to emulate incremental loading. It is intentionally content-heavy and deterministic so tests are repeatable and results comparable.
When to use it
- Benchmark lazy-loading performance for agent skills or plugins
- Test streaming and incremental parsing logic in LLM pipelines
- Validate memory and caching behavior of skill loaders
- Simulate large prompt or skill payloads during CI tests
- Measure UI responsiveness when rendering or previewing big skill data
Best practices
- Stream the content where possible to avoid blocking memory allocation
- Use checksums or size assertions to verify full content retrieval
- Combine with realistic timing and concurrency scenarios for load tests
- Clear caches or isolate runs to ensure consistent benchmark results
- Limit client-side rendering to summarized previews until full content is needed
Example use cases
- Load-testing a skills registry that dynamically imports skill definitions
- Validating an agent orchestrator’s ability to handle many simultaneous large skill fetches
- Profiling memory usage when skills are deserialized into runtime structures
- Testing UI components for progressive rendering and placeholder behavior
- Ensuring streaming parsers correctly assemble large prompt fragments
FAQ
No. The content is synthetic and only intended for testing lazy-loading, streaming, and performance behaviors.
How should I integrate this into automated tests?
Fetch the skill in the same way your system would load real skills, then assert fetch time, memory delta, stream completeness, and checksum. Run isolated and repeated trials for stable metrics.