From 1nitetent
Query 1nitetent.com campground spots (free one-night tent camping). Use when asked about 1nitetent, campgrounds, camping spots, tent spots, or "where can I camp near X". Supports near, search, spot, list, refresh, and mcp subcommands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/1nitetent:1nitetent <search-query><search-query>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query 2,480+ free one-night camping spots from 1nitetent.com via the `1nt` CLI.
Query 2,480+ free one-night camping spots from 1nitetent.com via the 1nt CLI.
Tool-calling hosts can use the bundled MCP server via 1nt mcp.
Process: $ARGUMENTS
User wants campground info
├── Near a location? ──────────── 1nt near <place> [--radius km]
│ └── With text filter? ───── 1nt near <place> --search <term>
├── Text search? ──────────────── 1nt search <term>
│ └── Near a location? ────── 1nt search <term> --near <place>
├── Specific spot detail? ─────── 1nt spot <id>
├── Browse all spots? ─────────── 1nt list [--limit N]
├── Refresh data? ─────────────── 1nt refresh
└── MCP host setup? ───────────── 1nt mcp
near and search accept each other's filter as an optional flag:
1nt near Koblenz --search Dusche # Spots near Koblenz with showers
1nt search Toilette --near Frankfurt # Spots mentioning toilets near Frankfurt
Output defaults to table in terminal, JSON when piped (agent use).
Override with --output json|ndjson|table.
Use -F name,location,link to filter output fields.
{"results": [...], "total_count": N, "showing": N, "has_more": true}
| Wrong | Right | Why |
|---|---|---|
| Parsing table output | Use --output json | Structured data for programmatic use |
1nt near Frankfurt | jq ... | 1nt near Frankfurt --output json | Avoid piping when flags exist |
| Multiple commands for compound queries | 1nt near X --search Y | Single command, single result set |
For questions the subcommands don't cover, use jq on the enriched cache:
jq '<filter>' ~/.cache/1nt/campgrounds.enriched.geojson
The enriched GeoJSON has all original properties plus location (e.g.,
"Beverungen, Lower Saxony, DE").
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | General error |
| 2 | Usage error |
| 3 | Not found |
| 4 | Network error |
| 5 | Cache error |
Start the stdio MCP server for tool-calling agents:
{
"mcpServers": {
"1nitetent": {
"command": "1nt",
"args": ["mcp"]
}
}
}
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub lukasmalkmus/1nitetent --plugin 1nitetent