This is not really an answer, but a piece of advice for when you have your solution and the official solution, and these two do not match (to be more precise: you have some solutions outside of the official solution).
Pick any number from your solution which is not included in the official solution, put it in all your expressions, and see what went wrong.
In this case, the "offending" set is $\langle -1, 0 \rangle$, so let's pick $x = -1/2$. Now, go through your steps:
\begin{align*}
1 + (1/x) \ge 0 \quad &\Rightarrow \quad 1 + \frac{1}{-1/2} = 1 - 2 = -1 \not\ge 0, \\
1/x \ge −1 \quad \text{(subtract 1 from both sides)} \quad &\Rightarrow \quad \frac{1}{-1/2} = -2 \not\ge -1, \\
1 \ge −x \quad \text{(multiply $x\dots$)} \quad &\Rightarrow \quad 1 \ge -(-1/2) = \frac{1}{2}, \\
−1 \le x \quad \text{(multiply both sides by $−1,\dots$)} \quad &\Rightarrow \quad -1 \le -1/2, \\
x \ge −1 \quad &\Rightarrow \quad -1/2 \ge -1.
\end{align*}
See when it turned from "not correct" to "correct"? That's where you've made a mistake and introduced a wrong solution. And, you also have an example ($x = -1/2$) that lets you look into that specific line (multiplying by $x$ when it is negative) to see why it went wrong.
Your "another way to solve":
\begin{align*}
1 + (1/x) \ge 0 \quad &\Rightarrow \quad 1 + \frac{1}{-1/2} = 1 - 2 = -1 \not\ge 0, \\
(x+1) / x \ge 0 \quad &\Rightarrow \quad \frac{(-1/2)+1}{-1/2} = \frac{1/2}{-1/2} = -1 \not\ge 0, \\
x+1 \ge 0 \quad &\Rightarrow \quad (-1/2)+1 = 1/2 \ge 0, \\
x \ge −1 \quad &\Rightarrow \quad -1/2 \ge -1.
\end{align*}
Here, it is even more obvious. When you multiplied $(x+1) / x \ge 0$ by a negative number, you switched from (the wrong) $-1 \ge 0$ to (the right) $1/2 \ge 0$. This is also a strong indicator that you should've switched the inequality sign as well. Now, try such multiplication of any inequality by any negative number and you'll see that it always has to be done. For example, try multiplying $2 \ge 1$ by $-1$. Is $-2 \ge -1$ or $-2 \le -1$?
Of course, in this process it is possible that the $x$ you pick satisfies the inequality from the beginning. In that case, you've either picked the $x$ that is actually included in the official solution (instead of just yours), or you've made some mistake substituting it in the inequality, or the official solution is wrong and you've found an $x$ outside of it that proves it.
As for the correct solution of your inequality, you've got plenty of those in the other answers, so I won't repeat that. I hope this helps you in the future.