11-47 commited on
Commit
dc6bf6f
·
verified ·
1 Parent(s): ac5f980

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +112 -0
README.md ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
+ - question-answering
6
+ - other
7
+ language:
8
+ - en
9
+ tags:
10
+ - agentic
11
+ - tool-use
12
+ - cli
13
+ - remote-operations
14
+ - reasoning
15
+ - chain-of-thought
16
+ - planning
17
+ - recovery
18
+ - WithinUsAI
19
+ pretty_name: The_Skills_From_WithIn_10k
20
+ size_categories:
21
+ - 10K<n<100K
22
+ ---
23
+
24
+ # Dataset Card for The_Skills_From_WithIn_10k
25
+
26
+ ## Dataset Summary
27
+
28
+ **The_Skills_From_WithIn_10k** is a high-quality, professionally curated dataset of 10,000 unique examples designed to train any LLM on the most advanced **agentic skills** for remote CLI operations.
29
+
30
+ Each example features:
31
+ - A complex professional remote operational goal or incident
32
+ - A rigorous `<thinking>` trace demonstrating senior-level agentic reasoning: goal decomposition, multi-step planning, explicit verification gates, rollback/contingency strategies, blast-radius control, safety invariants, and production-grade decision making
33
+ - A precise, ordered `action` (CLI sequence or agent playbook) ready for execution
34
+
35
+ This dataset builds true autonomous remote operations capability — planning, safety, recovery, and verifiable execution — for DevOps, SRE, and agentic systems.
36
+
37
+ **Creator:** WithIn Us Ai (WithinUsAI)
38
+
39
+ ## Dataset Structure
40
+
41
+ Each line in the JSONL file is a JSON object:
42
+
43
+ ```json
44
+ {
45
+ "id": "skills_remote_00001",
46
+ "query": "Complex professional remote operational goal or incident description",
47
+ "thinking": "<thinking>Advanced agentic reasoning trace: goal decomposition, state assessment, step-by-step plan with rationale, risk analysis, verification criteria, rollback strategy, and why this sequence</thinking>",
48
+ "action": "Ordered, production-safe CLI sequence or full agent playbook with comments and verification steps"
49
+ }
50
+ ```
51
+
52
+ ## Data Fields
53
+
54
+ - **id**: Unique identifier (skills_remote_XXXXX)
55
+ - **query**: Realistic high-stakes remote task (migrations, incident response, hardening, failover, scaling, recovery drills)
56
+ - **thinking**: Expert agentic Chain-of-Thought inside `<thinking>` tags. Teaches sophisticated planning, safety, and self-correction.
57
+ - **action**: Executable multi-step playbook with built-in verification and rollback logic.
58
+
59
+ ## Usage
60
+
61
+ ```python
62
+ from datasets import load_dataset
63
+
64
+ dataset = load_dataset("WithinUsAI/The_Skills_From_WithIn_10k", split="train")
65
+
66
+ print(dataset[0]["query"])
67
+ print(dataset[0]["thinking"])
68
+ print(dataset[0]["action"])
69
+ ```
70
+
71
+ Perfect for:
72
+ - Training advanced agentic / autonomous remote CLI agents
73
+ - SFT with visible sophisticated reasoning traces
74
+ - Building reliable zero-downtime operations, incident response, and change management agents
75
+ - Improving LLM planning, safety, and recovery capabilities in production environments
76
+
77
+ ## Quality & Creation
78
+
79
+ - 10,000 unique professional examples
80
+ - Zero duplicates, zero placeholders, zero dummy content
81
+ - Created by WithIn Us Ai to the highest professional standard
82
+ - Real-world agentic scenarios: zero-downtime migrations, OOM/incident stabilization, CIS hardening with rollback, multi-server fleet operations
83
+ - Strong emphasis on safety invariants, verification at every step, and minimal blast radius
84
+
85
+ ## Dataset Creation
86
+
87
+ Professionally designed and generated by WithIn Us Ai (WithinUsAI). Examples engineered for dense learning signal in agentic reasoning, remote constraint handling, and flawless execution discipline. Every trace teaches transferable senior SRE / DevOps agent skills.
88
+
89
+ ## Citation
90
+
91
+ If you use this dataset, please cite:
92
+
93
+ ```
94
+ @misc{withinusai2026skillsfromwithin,
95
+ title={The_Skills_From_WithIn_10k: Professional Agentic Remote CLI Skills Dataset},
96
+ author={WithIn Us Ai},
97
+ year={2026},
98
+ howpublished={\url{https://huggingface.co/datasets/WithinUsAI/The_Skills_From_WithIn_10k}}
99
+ }
100
+ ```
101
+
102
+ ## Contact & License
103
+
104
+ **Creator & Maintainer:** WithIn Us Ai (WithinUsAI)
105
+ **License:** MIT
106
+ **Organization:** https://huggingface.co/WithinUsAI
107
+
108
+ For the complete production pipeline or collaboration, contact WithinUsAI.
109
+
110
+ ---
111
+
112
+ *Built with precision for reliable autonomous agentic systems.*