I have compiled OpenCog, I can start cogserver, I can connect to the server with telnet and I can start scm (guilde shell) from the terminal, I can execute initial load of modules (opencog, opencogquery, etc), I can issue simple commands like creating Nodes and Links in the scm shell.
I am closely following:
But now I would like to got further:
1) I would like to write my Atomspace (initial list of nodes and links) in the file (I guess it should be scm file). The question is - how can I load this file into scm (or should I load it in somwhere else?). As I described in
https://groups.google.com/forum/#!topic/opencog/4jXqxM1k07c I did not manage to load my file in scm, there were error messages in scm and the warning in cogserver trace
2) I would like to run rule engine on my Atomspace to arrivet at the final (rewritten AtomSpace). What commands and in which shells should I use to do this run? This should be pretty basic and common tasks in the OpenCog usage: provide input AtomSpace, run RuleEngine and arrive at the final AtomSpace. Like some kind of business rules engine (e.g. like Droos
https://docs.jboss.org/drools/release/6.5.0.Final/drools-docs/html_single/index.html where such activity is known as knowledge session, I have managed and where atomspace is called a working memory).
But I am stuck in these basic things - how to load file in scm, how to start forward chaining reasoning and how to write back the resulting Atomspace in file for further processing. I would like to use Scheme, not C++ or Python API/bindings.