atomic
(CLI)Status: pre-alpha
A command-line application to create, read and interact with Atomic Data.
``` atomic 0.1.3 Joep Meindertsma joep@ontola.io Create, share, fetch and model linked atomic data!
USAGE: atomic [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: get Traverses a Path and prints the resulting Resource or Value. Examples: atomic get "class description" atomic get "https://example.com" Visit https://docs.atomicdata.dev/core/paths.html for more info about paths. help Prints this message or the help of the given subcommand(s) list List all bookmarks new Create a Resource
Visit https://github.com/joepio/atomic-cli for more info ```
Install Cargo to build from source.
Install using crates.io:
sh
cargo install atomic-cli
Or build from this repo:
```sh git clone git@github.com:joepio/atomic.git cd atomic/cli
cargo install --path ./ ```
```sh
atomic --help
atomic get class atomic get "class description" atomic new class ```
new
command for instantiating Atomic Classeslist
command for showing local bookmarks (mappings)get
command for finding resources and parts of data using Atomic Paths with...
get
commandsatomic-server
(fetches from there, stores there, uses domain etc.)map
command for creating a bookmark and storing a copyedit
command for manipulating existing resourcesAtomic creates a ~/.config/atomic
folder, which contains a mapping.amp
and a store.ad3
.
The Mapping refers to your user specific set of shortname-URL combinations.
This Mapping lives as a simple text file in ./user_mappping.amp
.
person=https://atomicdata.dev/classes/Person
This serves as a UX story that guides the development of this CLI.
```sh
$ atomic map person https://example.com/person
$ atomic new person
Created at: ipfs:Qwhp2fh3o8hfo8w7fhwo77w38ohw3o78fhw3ho78w3o837ho8fwh8o7fh37ho
bookmark (optional): shortname
$ atomic setup
$ atomic install https://atomicdata.dev/ontologies/meetings
$ atomic install meetings ```