darksouls / README.md
we6jbo's picture
Update public-safe Dark Souls AI Digital dataset
71f23ec verified
|
Raw
History Blame Contribute Delete
3.83 kB
metadata
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 manifest
  • ports.json - public interface port roles
  • current-character.json - complete current character sheet/archive
  • current-character.md - human/LLM-readable character sheet
  • current-character.jsonl - current character as one JSONL record
  • character-sheet-history.jsonl - every scheduled character-publication attempt
  • guest-experience-history.jsonl - recorded Guest read-back experience
  • llms.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

  1. Pull the current complete we6jbo character sheet as JSON.
  2. Read the same character in Markdown without writing code.
  3. Inspect Souls, level, attributes, humanity, covenant, current area and NG cycle.
  4. Inspect equipped weapons/armor/rings and full inventory.
  5. Inspect keys and other progression-related items present in the archive.
  6. Use the offline replication profile as structured input for character/stat tools.
  7. Build charts or dashboards from the character JSON.
  8. Compare scheduled snapshots/history to study character progression over time.
  9. Feed the public JSON/Markdown into a local RAG or LLM system as project context.
  10. Build derived public datasets such as embeddings, classifications or summaries.
  11. Validate integrations against the documented 54224/33315 interface roles.
  12. 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.