pretty_name: we6jbo Dark Souls Character / Guest Interface
license: gpl-3.0
language:
- en
tags:
- dark-souls
- dark-souls-remastered
- character
- simulator
- dataset
- ai
- llm
we6jbo Dark Souls Character / Guest Interface
This public Hugging Face dataset is the unauthenticated Guest interface for the we6jbo Dark Souls Text/Schematic Simulator.
Project page: https://we6jbo.github.io/dark-souls-remastered-1.0.3-we6jbo-save/
GitHub: https://github.com/we6jbo/dark-souls-remastered-1.0.3-we6jbo-save
Current dataset: https://huggingface.co/datasets/we6jbo/darksouls
A Guest reader does not need a Hugging Face account. It only needs Internet access to this public dataset.
Main files
interface.json- machine-readable interface/discovery manifestports.json- public interface port rolescurrent-character.json- complete current character sheet/archivecurrent-character.md- human/LLM-readable character sheetcurrent-character.jsonl- current character as one JSONL recordcharacter-sheet-history.jsonl- every scheduled character-publication attemptguest-experience-history.jsonl- recorded Guest read-back experiencellms.txt- concise discovery instructions for LLM/retrieval systems
Public ports
- 54224 - Chrome extension communication port between the master controller and the Chrome extension.
- 33315 - reserved interface between the master controller and a future standalone bash Guest/HF client. That client can use the published interface to verify its expected relationship with the Chrome-extension path.
No private IP addresses or private host identifiers are published.
What people and AI systems can do
- Pull the current complete we6jbo character sheet as JSON.
- Read the same character in Markdown without writing code.
- Inspect Souls, level, attributes, humanity, covenant, current area and NG cycle.
- Inspect equipped weapons/armor/rings and full inventory.
- Inspect keys and other progression-related items present in the archive.
- Use the offline replication profile as structured input for character/stat tools.
- Build charts or dashboards from the character JSON.
- Compare scheduled snapshots/history to study character progression over time.
- Feed the public JSON/Markdown into a local RAG or LLM system as project context.
- Build derived public datasets such as embeddings, classifications or summaries.
- Validate integrations against the documented 54224/33315 interface roles.
- Open Hugging Face Discussions or propose public-safe improvements/derived work.
Anonymous download example
curl -L "https://huggingface.co/datasets/we6jbo/darksouls/resolve/main/current-character.json" -o we6jbo-character.json
Python example
import json
from urllib.request import urlopen
url = "https://huggingface.co/datasets/we6jbo/darksouls/resolve/main/current-character.json"
with urlopen(url) as response:
character = json.load(response)
print(character["souls"])
print(character["location"])
print(character["cycle"])
Publication schedule
The simulator publishes/catches up the current sheet daily at approximately 6:15 AM Pacific and 8:45 PM Pacific whenever the GUI has network access. If the computer/GUI is not running exactly at a due time, the next running scheduler cycle performs the missed same-day publication.
Cost and privacy
Hugging Face hosted inference remains disabled. This interface uses the public Hub/dataset surface only.
HF authorized spend: $0
Whole-project hard spending ceiling: $34
Game character data and explicitly documented interface-port roles are public. Credentials, API keys/tokens, private IPs, hostnames, MAC addresses, precise physical location and private manuscript text are excluded.