Create tessl tiles with docs, rules, and skills.
Does it follow best practices?
Evaluation — 97%
↑ 1.98xAgent success when using this tile
Validation for skill structure
A platform engineering team has a collection of internal wiki pages that they want to convert into a Tessl tile so their AI assistant can help with day-to-day platform tasks. The content is currently in markdown files but isn't structured for AI consumption.
Your job is to restructure these files into a proper Tessl tile at ./platform-tile/ with workspace "platform-eng" and name "platform-eng/platform-ops". Version it as 0.1.0 with summary "Platform engineering operations and reference".
The following files are provided as inputs. Extract them before beginning.
=============== FILE: inputs/wiki/database-setup-guide.md ===============
This document explains how to set up a new PostgreSQL database for our services.
Run the following command to create a new database:
createdb -h db.internal.acme.com -U admin service_dbApply our standard schema template:
psql -h db.internal.acme.com -U admin -d service_db -f schema/base.sqlSet up PgBouncer with our standard config:
cp /etc/pgbouncer/template.ini /etc/pgbouncer/service_db.ini
# Edit the file to set:
# pool_mode = transaction
# max_client_conn = 200
# default_pool_size = 25Add the database to Consul:
consul kv put services/service_db/db_host db.internal.acme.com
consul kv put services/service_db/db_port 5432psql -h db.internal.acme.com -U admin -d service_db -c "SELECT 1"=============== FILE: inputs/wiki/service-catalog.md ===============
=============== FILE: inputs/wiki/coding-standards.md ===============
These are general guidelines for our codebase. We use them loosely and they are more like suggestions.
Produce the complete tile directory at ./platform-tile/ with:
tile.json — valid manifestconversion-log.md in the working directory documenting: